mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
diff --git content/public/common/common_param_traits_macros.h content/public/common/common_param_traits_macros.h
 | 
						|
index 95656cd4c191..35f26f152c6b 100644
 | 
						|
--- content/public/common/common_param_traits_macros.h
 | 
						|
+++ content/public/common/common_param_traits_macros.h
 | 
						|
@@ -205,6 +205,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 767e91cc80ba..34f59feab5e2 100644
 | 
						|
--- content/public/common/web_preferences.cc
 | 
						|
+++ content/public/common/web_preferences.cc
 | 
						|
@@ -171,6 +171,7 @@ WebPreferences::WebPreferences()
 | 
						|
       spatial_navigation_enabled(false),
 | 
						|
       use_solid_color_scrollbars(false),
 | 
						|
       navigate_on_drag_drop(true),
 | 
						|
+      base_background_color(0xFFFFFFFF),  // Color::white
 | 
						|
       v8_cache_options(V8_CACHE_OPTIONS_DEFAULT),
 | 
						|
       record_whole_document(false),
 | 
						|
       cookie_enabled(true),
 | 
						|
diff --git content/public/common/web_preferences.h content/public/common/web_preferences.h
 | 
						|
index 5012952734f0..ed17a578d521 100644
 | 
						|
--- content/public/common/web_preferences.h
 | 
						|
+++ content/public/common/web_preferences.h
 | 
						|
@@ -191,6 +191,7 @@ struct CONTENT_EXPORT WebPreferences {
 | 
						|
   bool spatial_navigation_enabled;
 | 
						|
   bool use_solid_color_scrollbars;
 | 
						|
   bool navigate_on_drag_drop;
 | 
						|
+  uint32_t base_background_color;
 | 
						|
   V8CacheOptions v8_cache_options;
 | 
						|
   bool record_whole_document;
 | 
						|
 
 | 
						|
diff --git content/renderer/render_view_impl.cc content/renderer/render_view_impl.cc
 | 
						|
index f26cc788fc83..fab85a323d87 100644
 | 
						|
--- content/renderer/render_view_impl.cc
 | 
						|
+++ content/renderer/render_view_impl.cc
 | 
						|
@@ -1317,6 +1317,8 @@ void RenderViewImpl::ApplyWebPreferencesInternal(
 | 
						|
     blink::WebView* web_view,
 | 
						|
     CompositorDependencies* compositor_deps) {
 | 
						|
   ApplyWebPreferences(prefs, web_view);
 | 
						|
+  if (GetWebFrameWidget())
 | 
						|
+    GetWebFrameWidget()->SetBaseBackgroundColor(prefs.base_background_color);
 | 
						|
 }
 | 
						|
 
 | 
						|
 void RenderViewImpl::OnForceRedraw(const ui::LatencyInfo& latency_info) {
 |