blob: 16fe502452c9dcd9c0446fc918cd3f100bddd7b4 [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
[email protected]daf82f82011-10-31 22:35:3110namespace content {
11struct RendererPreferences;
wjmacleane530aa742014-10-14 21:43:3012class WebContents;
[email protected]daf82f82011-10-31 22:35:3113}
14
[email protected]93623c5d2009-12-10 21:40:3215namespace renderer_preferences_util {
16
[email protected]7ff431e2010-01-07 18:18:5417// Copies system configuration preferences into |prefs|.
[email protected]daf82f82011-10-31 22:35:3118void UpdateFromSystemSettings(content::RendererPreferences* prefs,
wjmacleane530aa742014-10-14 21:43:3019 Profile* profile,
20 content::WebContents* web_contents);
[email protected]93623c5d2009-12-10 21:40:3221
22} // namespace renderer_preferences_util
23
24#endif // CHROME_BROWSER_RENDERER_PREFERENCES_UTIL_H_