2017-04-26 21:59:52 -04:00
|
|
|
diff --git content/public/common/common_param_traits_macros.h content/public/common/common_param_traits_macros.h
|
2018-06-08 12:53:10 -04:00
|
|
|
index 57f03dc1ed38..061bf10c07aa 100644
|
2017-04-26 21:59:52 -04:00
|
|
|
--- content/public/common/common_param_traits_macros.h
|
|
|
|
+++ content/public/common/common_param_traits_macros.h
|
2018-06-08 12:53:10 -04:00
|
|
|
@@ -190,6 +190,7 @@ IPC_STRUCT_TRAITS_BEGIN(content::WebPreferences)
|
2014-09-04 17:53:40 +00:00
|
|
|
IPC_STRUCT_TRAITS_MEMBER(main_frame_resizes_are_orientation_changes)
|
2014-04-08 19:33:48 +00: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)
|
2017-04-26 21:59:52 -04:00
|
|
|
diff --git content/public/common/web_preferences.cc content/public/common/web_preferences.cc
|
2018-07-06 13:11:55 -04:00
|
|
|
index 8378aefaf81a..f831c4aa6d26 100644
|
2017-04-26 21:59:52 -04:00
|
|
|
--- content/public/common/web_preferences.cc
|
|
|
|
+++ content/public/common/web_preferences.cc
|
2018-06-01 15:16:26 -04:00
|
|
|
@@ -178,6 +178,7 @@ WebPreferences::WebPreferences()
|
2016-11-23 15:54:29 -05:00
|
|
|
spatial_navigation_enabled(false),
|
2014-09-04 17:53:40 +00:00
|
|
|
use_solid_color_scrollbars(false),
|
|
|
|
navigate_on_drag_drop(true),
|
|
|
|
+ base_background_color(0xFFFFFFFF), // Color::white
|
2014-12-13 20:18:31 +00:00
|
|
|
v8_cache_options(V8_CACHE_OPTIONS_DEFAULT),
|
2016-04-27 16:38:52 -04:00
|
|
|
record_whole_document(false),
|
2017-10-20 13:45:20 -04:00
|
|
|
save_previous_document_resources(SavePreviousDocumentResources::NEVER),
|
2017-04-26 21:59:52 -04:00
|
|
|
diff --git content/public/common/web_preferences.h content/public/common/web_preferences.h
|
2018-06-08 12:53:10 -04:00
|
|
|
index 78cbf5f3db86..9a4906a32336 100644
|
2017-04-26 21:59:52 -04:00
|
|
|
--- content/public/common/web_preferences.h
|
|
|
|
+++ content/public/common/web_preferences.h
|
2018-05-21 15:54:08 +03:00
|
|
|
@@ -198,6 +198,7 @@ struct CONTENT_EXPORT WebPreferences {
|
2016-11-23 15:54:29 -05:00
|
|
|
bool spatial_navigation_enabled;
|
2014-09-04 17:53:40 +00:00
|
|
|
bool use_solid_color_scrollbars;
|
|
|
|
bool navigate_on_drag_drop;
|
|
|
|
+ uint32_t base_background_color;
|
|
|
|
V8CacheOptions v8_cache_options;
|
2016-04-27 16:38:52 -04:00
|
|
|
bool record_whole_document;
|
2017-10-20 13:45:20 -04:00
|
|
|
SavePreviousDocumentResources save_previous_document_resources;
|
2017-04-26 21:59:52 -04:00
|
|
|
diff --git content/renderer/render_view_impl.cc content/renderer/render_view_impl.cc
|
2018-07-23 18:32:02 -04:00
|
|
|
index 03d9cda9f95d..b5e24523bb1c 100644
|
2017-04-26 21:59:52 -04:00
|
|
|
--- content/renderer/render_view_impl.cc
|
|
|
|
+++ content/renderer/render_view_impl.cc
|
2018-07-23 18:32:02 -04:00
|
|
|
@@ -1222,6 +1222,7 @@ void RenderViewImpl::SendFrameStateUpdates() {
|
|
|
|
void RenderViewImpl::ApplyWebPreferencesInternal(const WebPreferences& prefs,
|
|
|
|
blink::WebView* web_view) {
|
2016-03-15 22:55:59 -04:00
|
|
|
ApplyWebPreferences(prefs, web_view);
|
2018-02-22 12:59:06 -05:00
|
|
|
+ web_view->SetBaseBackgroundColor(prefs.base_background_color);
|
2016-04-27 16:38:52 -04:00
|
|
|
}
|
|
|
|
|
2018-07-13 15:29:20 -04:00
|
|
|
// blink::WebViewClient ------------------------------------------------------
|