2017-04-27 03:59:52 +02:00
|
|
|
diff --git content/public/common/common_param_traits_macros.h content/public/common/common_param_traits_macros.h
|
2020-08-29 00:39:23 +02:00
|
|
|
index 8e810871066b..107f15b92829 100644
|
2017-04-27 03:59:52 +02:00
|
|
|
--- content/public/common/common_param_traits_macros.h
|
|
|
|
+++ content/public/common/common_param_traits_macros.h
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -174,6 +174,7 @@ IPC_STRUCT_TRAITS_BEGIN(content::WebPreferences)
|
2014-09-04 19:53:40 +02:00
|
|
|
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)
|
2017-04-27 03:59:52 +02:00
|
|
|
diff --git content/public/common/web_preferences.cc content/public/common/web_preferences.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
index 839e3cbde987..ef1b0d7be31f 100644
|
2017-04-27 03:59:52 +02:00
|
|
|
--- content/public/common/web_preferences.cc
|
|
|
|
+++ content/public/common/web_preferences.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -181,6 +181,7 @@ WebPreferences::WebPreferences()
|
|
|
|
#endif
|
2020-02-10 18:10:17 +01:00
|
|
|
spatial_navigation_enabled(false),
|
2014-09-04 19:53:40 +02:00
|
|
|
navigate_on_drag_drop(true),
|
|
|
|
+ base_background_color(0xFFFFFFFF), // Color::white
|
2019-02-21 01:42:36 +01:00
|
|
|
v8_cache_options(blink::mojom::V8CacheOptions::kDefault),
|
2016-04-27 22:38:52 +02:00
|
|
|
record_whole_document(false),
|
2019-01-17 10:56:52 +01:00
|
|
|
cookie_enabled(true),
|
2017-04-27 03:59:52 +02:00
|
|
|
diff --git content/public/common/web_preferences.h content/public/common/web_preferences.h
|
2020-08-29 00:39:23 +02:00
|
|
|
index 700b47b5f521..4cd1cdceaf42 100644
|
2017-04-27 03:59:52 +02:00
|
|
|
--- content/public/common/web_preferences.h
|
|
|
|
+++ content/public/common/web_preferences.h
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -179,6 +179,7 @@ struct CONTENT_EXPORT WebPreferences {
|
|
|
|
bool smart_insert_delete_enabled;
|
2020-02-10 18:10:17 +01:00
|
|
|
bool spatial_navigation_enabled;
|
2014-09-04 19:53:40 +02:00
|
|
|
bool navigate_on_drag_drop;
|
|
|
|
+ uint32_t base_background_color;
|
2019-02-21 01:42:36 +01:00
|
|
|
blink::mojom::V8CacheOptions v8_cache_options;
|
2016-04-27 22:38:52 +02:00
|
|
|
bool record_whole_document;
|
2019-01-17 10:56:52 +01:00
|
|
|
|
2017-04-27 03:59:52 +02:00
|
|
|
diff --git content/renderer/render_view_impl.cc content/renderer/render_view_impl.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
index 49619a9b5683..52e09111aad3 100644
|
2017-04-27 03:59:52 +02:00
|
|
|
--- content/renderer/render_view_impl.cc
|
|
|
|
+++ content/renderer/render_view_impl.cc
|
2020-08-29 00:39:23 +02:00
|
|
|
@@ -950,6 +950,8 @@ void RenderView::ApplyWebPreferences(const WebPreferences& prefs,
|
2018-11-30 23:21:07 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
WebRuntimeFeatures::EnableTranslateService(prefs.translate_service_available);
|
2018-11-03 02:15:09 +01:00
|
|
|
+
|
2018-02-22 18:59:06 +01:00
|
|
|
+ web_view->SetBaseBackgroundColor(prefs.base_background_color);
|
2016-04-27 22:38:52 +02:00
|
|
|
}
|
|
|
|
|
2018-11-03 02:15:09 +01:00
|
|
|
/*static*/
|