1 // Copyright 2019 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef CONTENT_PUBLIC_BROWSER_RENDERER_PREFERENCES_UTIL_H_
6 #define CONTENT_PUBLIC_BROWSER_RENDERER_PREFERENCES_UTIL_H_
7 
8 #include "content/common/content_export.h"
9 
10 namespace blink {
11 namespace mojom {
12 class RendererPreferences;
13 }
14 }  // namespace blink
15 
16 namespace content {
17 
18 // Updates |prefs| from system settings.
19 CONTENT_EXPORT void UpdateFontRendererPreferencesFromSystemSettings(
20     blink::mojom::RendererPreferences* prefs);
21 
22 }  // namespace content
23 
24 #endif  // CONTENT_PUBLIC_BROWSER_RENDERER_PREFERENCES_UTIL_H_
25