Index: chrome/browser/chrome_content_browser_client.cc |
diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc |
index a75d2f8c81fb975c9245adf13e41a2064d083c93..9079040c37000d13707ec3227dfc893269c85f92 100644 |
--- a/chrome/browser/chrome_content_browser_client.cc |
+++ b/chrome/browser/chrome_content_browser_client.cc |
@@ -123,6 +123,7 @@ |
#include "content/public/common/child_process_host.h" |
#include "content/public/common/content_descriptors.h" |
#include "content/public/common/url_utils.h" |
+#include "content/public/common/web_preferences.h" |
#include "extensions/browser/extension_host.h" |
#include "extensions/browser/extension_message_filter.h" |
#include "extensions/browser/extension_registry.h" |
@@ -151,7 +152,6 @@ |
#include "ui/base/l10n/l10n_util.h" |
#include "ui/base/resource/resource_bundle.h" |
#include "webkit/browser/fileapi/external_mount_points.h" |
-#include "webkit/common/webpreferences.h" |
#if defined(OS_WIN) |
#include "base/win/windows_version.h" |
@@ -263,6 +263,7 @@ using content::RenderFrameHost; |
using content::RenderViewHost; |
using content::SiteInstance; |
using content::WebContents; |
+using content::WebPreferences; |
using extensions::APIPermission; |
using extensions::Extension; |
using extensions::InfoMap; |
@@ -497,7 +498,7 @@ bool CertMatchesFilter(const net::X509Certificate& cert, |
// Fills |map| with the per-script font prefs under path |map_name|. |
void FillFontFamilyMap(const PrefService* prefs, |
const char* map_name, |
- webkit_glue::ScriptFontFamilyMap* map) { |
+ content::ScriptFontFamilyMap* map) { |
// TODO(falken): Get rid of the brute-force scan over possible |
// (font family / script) combinations - see http://crbug.com/308095. |
for (size_t i = 0; i < prefs::kWebKitScriptsForFontFamilyMapsLength; ++i) { |