blob: 5150bafd7f68c9164eaf855477ef5ea9e8b01c6c [file] [log] [blame]
[email protected]93623c5d2009-12-10 21:40:321// Copyright (c) 2009 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 CHROME_BROWSER_RENDERER_PREFERENCES_UTIL_H_
6#define CHROME_BROWSER_RENDERER_PREFERENCES_UTIL_H_
7
[email protected]93623c5d2009-12-10 21:40:328class Profile;
9
Leon Hanc819dc62019-01-28 04:30:1910namespace blink {
Mario Sanchez Prada0bd8b8c2020-10-21 17:49:2311struct RendererPreferences;
Leon Hanc819dc62019-01-28 04:30:1912} // namespace blink
[email protected]daf82f82011-10-31 22:35:3113
[email protected]93623c5d2009-12-10 21:40:3214namespace renderer_preferences_util {
15
[email protected]7ff431e2010-01-07 18:18:5416// Copies system configuration preferences into |prefs|.
Mario Sanchez Prada0bd8b8c2020-10-21 17:49:2317void UpdateFromSystemSettings(blink::RendererPreferences* prefs,
Kenichi Ishibashif522ac42018-07-12 23:16:4618 Profile* profile);
[email protected]93623c5d2009-12-10 21:40:3219
20} // namespace renderer_preferences_util
21
22#endif // CHROME_BROWSER_RENDERER_PREFERENCES_UTIL_H_