mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-04-18 04:37:24 +02:00
- Windows: 10.0.19041 SDK is now required. - macOS: 10.15.1 SDK (at least Xcode 11.2) is now required. - Remove CefMediaSource::IsValid and CefMediaSink::IsValid which would always return true.
50 lines
2.2 KiB
Diff
50 lines
2.2 KiB
Diff
diff --git content/public/common/common_param_traits_macros.h content/public/common/common_param_traits_macros.h
|
|
index d67aa115c4ed..c799f2e32011 100644
|
|
--- content/public/common/common_param_traits_macros.h
|
|
+++ content/public/common/common_param_traits_macros.h
|
|
@@ -176,6 +176,7 @@ IPC_STRUCT_TRAITS_BEGIN(content::WebPreferences)
|
|
IPC_STRUCT_TRAITS_MEMBER(main_frame_resizes_are_orientation_changes)
|
|
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)
|
|
diff --git content/public/common/web_preferences.cc content/public/common/web_preferences.cc
|
|
index f85ad51fb34b..6168136649ea 100644
|
|
--- content/public/common/web_preferences.cc
|
|
+++ content/public/common/web_preferences.cc
|
|
@@ -163,6 +163,7 @@ WebPreferences::WebPreferences()
|
|
spatial_navigation_enabled(false),
|
|
caret_browsing_enabled(false),
|
|
navigate_on_drag_drop(true),
|
|
+ base_background_color(0xFFFFFFFF), // Color::white
|
|
v8_cache_options(blink::mojom::V8CacheOptions::kDefault),
|
|
record_whole_document(false),
|
|
cookie_enabled(true),
|
|
diff --git content/public/common/web_preferences.h content/public/common/web_preferences.h
|
|
index bf98747b7b38..fa046af3e0ee 100644
|
|
--- content/public/common/web_preferences.h
|
|
+++ content/public/common/web_preferences.h
|
|
@@ -180,6 +180,7 @@ struct CONTENT_EXPORT WebPreferences {
|
|
bool spatial_navigation_enabled;
|
|
bool caret_browsing_enabled;
|
|
bool navigate_on_drag_drop;
|
|
+ uint32_t base_background_color;
|
|
blink::mojom::V8CacheOptions v8_cache_options;
|
|
bool record_whole_document;
|
|
|
|
diff --git content/renderer/render_view_impl.cc content/renderer/render_view_impl.cc
|
|
index c6a990f87306..1b9759f2b603 100644
|
|
--- content/renderer/render_view_impl.cc
|
|
+++ content/renderer/render_view_impl.cc
|
|
@@ -963,6 +963,8 @@ void RenderView::ApplyWebPreferences(const WebPreferences& prefs,
|
|
#endif
|
|
|
|
WebRuntimeFeatures::EnableTranslateService(prefs.translate_service_available);
|
|
+
|
|
+ web_view->SetBaseBackgroundColor(prefs.base_background_color);
|
|
}
|
|
|
|
/*static*/
|