[email protected] | 93623c5d | 2009-12-10 21:40:32 | [diff] [blame] | 1 | // 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] | 93623c5d | 2009-12-10 21:40:32 | [diff] [blame] | 8 | class Profile; |
9 | |||||
Leon Han | c819dc6 | 2019-01-28 04:30:19 | [diff] [blame] | 10 | namespace blink { |
Mario Sanchez Prada | 0bd8b8c | 2020-10-21 17:49:23 | [diff] [blame] | 11 | struct RendererPreferences; |
Leon Han | c819dc6 | 2019-01-28 04:30:19 | [diff] [blame] | 12 | } // namespace blink |
[email protected] | daf82f8 | 2011-10-31 22:35:31 | [diff] [blame] | 13 | |
[email protected] | 93623c5d | 2009-12-10 21:40:32 | [diff] [blame] | 14 | namespace renderer_preferences_util { |
15 | |||||
[email protected] | 7ff431e | 2010-01-07 18:18:54 | [diff] [blame] | 16 | // Copies system configuration preferences into |prefs|. |
Mario Sanchez Prada | 0bd8b8c | 2020-10-21 17:49:23 | [diff] [blame] | 17 | void UpdateFromSystemSettings(blink::RendererPreferences* prefs, |
Kenichi Ishibashi | f522ac4 | 2018-07-12 23:16:46 | [diff] [blame] | 18 | Profile* profile); |
[email protected] | 93623c5d | 2009-12-10 21:40:32 | [diff] [blame] | 19 | |
20 | } // namespace renderer_preferences_util | ||||
21 | |||||
22 | #endif // CHROME_BROWSER_RENDERER_PREFERENCES_UTIL_H_ |