Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Unified Diff: ppapi/shared_impl/ppapi_preferences.h

Issue 357203003: Move webpreferences.* from webkit/ to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/shared_impl/ppapi_preferences.h
diff --git a/ppapi/shared_impl/ppapi_preferences.h b/ppapi/shared_impl/ppapi_preferences.h
index 0ef91362f537c9d9576aacb2234f45f94a74bb96..2f802849d87d8fc83d5cc8365edf19d8429a913f 100644
--- a/ppapi/shared_impl/ppapi_preferences.h
+++ b/ppapi/shared_impl/ppapi_preferences.h
@@ -5,23 +5,25 @@
#ifndef PPAPI_SHARED_IMPL_PPAPI_PREFERENCES_H_
#define PPAPI_SHARED_IMPL_PPAPI_PREFERENCES_H_
+#include "content/public/common/webpreferences.h"
#include "ppapi/shared_impl/ppapi_shared_export.h"
-#include "webkit/common/webpreferences.h"
+namespace content {
struct WebPreferences;
+}
namespace ppapi {
struct PPAPI_SHARED_EXPORT Preferences {
public:
Preferences();
- explicit Preferences(const WebPreferences& prefs);
+ explicit Preferences(const content::WebPreferences& prefs);
~Preferences();
- webkit_glue::ScriptFontFamilyMap standard_font_family_map;
- webkit_glue::ScriptFontFamilyMap fixed_font_family_map;
- webkit_glue::ScriptFontFamilyMap serif_font_family_map;
- webkit_glue::ScriptFontFamilyMap sans_serif_font_family_map;
+ content::ScriptFontFamilyMap standard_font_family_map;
+ content::ScriptFontFamilyMap fixed_font_family_map;
+ content::ScriptFontFamilyMap serif_font_family_map;
+ content::ScriptFontFamilyMap sans_serif_font_family_map;
int default_font_size;
int default_fixed_font_size;
int number_of_cpu_cores;

Powered by Google App Engine
This is Rietveld 408576698