2014-09-04 19:53:40 +02:00
|
|
|
diff --git public/common/common_param_traits_macros.h public/common/common_param_traits_macros.h
|
2014-09-27 01:48:19 +02:00
|
|
|
index 1d045b0..e336118 100644
|
2014-09-04 19:53:40 +02:00
|
|
|
--- public/common/common_param_traits_macros.h
|
|
|
|
+++ public/common/common_param_traits_macros.h
|
|
|
|
@@ -172,6 +172,7 @@ IPC_STRUCT_TRAITS_BEGIN(content::WebPreferences)
|
|
|
|
IPC_STRUCT_TRAITS_MEMBER(main_frame_resizes_are_orientation_changes)
|
2014-04-08 21:33:48 +02:00
|
|
|
IPC_STRUCT_TRAITS_MEMBER(initialize_at_minimum_page_scale)
|
|
|
|
IPC_STRUCT_TRAITS_MEMBER(smart_insert_delete_enabled)
|
|
|
|
+ IPC_STRUCT_TRAITS_MEMBER(base_background_color)
|
|
|
|
IPC_STRUCT_TRAITS_MEMBER(cookie_enabled)
|
|
|
|
IPC_STRUCT_TRAITS_MEMBER(navigate_on_drag_drop)
|
|
|
|
IPC_STRUCT_TRAITS_MEMBER(spatial_navigation_enabled)
|
2014-09-04 19:53:40 +02:00
|
|
|
diff --git public/common/web_preferences.cc public/common/web_preferences.cc
|
2014-09-27 01:48:19 +02:00
|
|
|
index 32f7987..7e166c4 100644
|
2014-09-04 19:53:40 +02:00
|
|
|
--- public/common/web_preferences.cc
|
|
|
|
+++ public/common/web_preferences.cc
|
|
|
|
@@ -135,6 +135,7 @@ WebPreferences::WebPreferences()
|
|
|
|
pinch_overlay_scrollbar_thickness(0),
|
|
|
|
use_solid_color_scrollbars(false),
|
|
|
|
navigate_on_drag_drop(true),
|
|
|
|
+ base_background_color(0xFFFFFFFF), // Color::white
|
|
|
|
v8_cache_options(V8_CACHE_OPTIONS_OFF),
|
2014-09-27 01:48:19 +02:00
|
|
|
v8_script_streaming_enabled(false),
|
2014-09-04 19:53:40 +02:00
|
|
|
cookie_enabled(true),
|
|
|
|
diff --git public/common/web_preferences.h public/common/web_preferences.h
|
2014-09-27 01:48:19 +02:00
|
|
|
index b0a95ca..8c0781e 100644
|
2014-09-04 19:53:40 +02:00
|
|
|
--- public/common/web_preferences.h
|
|
|
|
+++ public/common/web_preferences.h
|
|
|
|
@@ -141,6 +141,7 @@ struct CONTENT_EXPORT WebPreferences {
|
|
|
|
int pinch_overlay_scrollbar_thickness;
|
|
|
|
bool use_solid_color_scrollbars;
|
|
|
|
bool navigate_on_drag_drop;
|
|
|
|
+ uint32_t base_background_color;
|
|
|
|
V8CacheOptions v8_cache_options;
|
2014-09-27 01:48:19 +02:00
|
|
|
bool v8_script_streaming_enabled;
|
2014-09-04 19:53:40 +02:00
|
|
|
|
|
|
|
diff --git renderer/render_view_impl.cc renderer/render_view_impl.cc
|
2014-10-10 19:54:35 +02:00
|
|
|
index b931da5..73b30b4 100644
|
2014-09-04 19:53:40 +02:00
|
|
|
--- renderer/render_view_impl.cc
|
|
|
|
+++ renderer/render_view_impl.cc
|
2014-10-10 19:54:35 +02:00
|
|
|
@@ -971,6 +971,8 @@ void RenderView::ApplyWebPreferences(const WebPreferences& prefs,
|
2014-04-30 19:14:40 +02:00
|
|
|
|
|
|
|
settings->setJavaEnabled(prefs.java_enabled);
|
2014-04-08 21:33:48 +02:00
|
|
|
|
|
|
|
+ web_view->setBaseBackgroundColor(prefs.base_background_color);
|
|
|
|
+
|
2014-04-30 19:14:40 +02:00
|
|
|
// By default, allow_universal_access_from_file_urls is set to false and thus
|
|
|
|
// we mitigate attacks from local HTML files by not granting file:// URLs
|
|
|
|
// universal access. Only test shell will enable this.
|