mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			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 37807f0ad754..006f6e660243 100644
 | 
						|
--- content/public/common/common_param_traits_macros.h
 | 
						|
+++ content/public/common/common_param_traits_macros.h
 | 
						|
@@ -174,6 +174,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 839e3cbde987..ef1b0d7be31f 100644
 | 
						|
--- content/public/common/web_preferences.cc
 | 
						|
+++ content/public/common/web_preferences.cc
 | 
						|
@@ -181,6 +181,7 @@ WebPreferences::WebPreferences()
 | 
						|
 #endif
 | 
						|
       spatial_navigation_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 9262a32ce209..b4c9e32b6e69 100644
 | 
						|
--- content/public/common/web_preferences.h
 | 
						|
+++ content/public/common/web_preferences.h
 | 
						|
@@ -179,6 +179,7 @@ struct CONTENT_EXPORT WebPreferences {
 | 
						|
   bool smart_insert_delete_enabled;
 | 
						|
   bool spatial_navigation_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 2852dec8eaf5..881c75a45b2b 100644
 | 
						|
--- content/renderer/render_view_impl.cc
 | 
						|
+++ content/renderer/render_view_impl.cc
 | 
						|
@@ -951,6 +951,8 @@ void RenderView::ApplyWebPreferences(const WebPreferences& prefs,
 | 
						|
 #endif
 | 
						|
 
 | 
						|
   WebRuntimeFeatures::EnableTranslateService(prefs.translate_service_available);
 | 
						|
+
 | 
						|
+  web_view->SetBaseBackgroundColor(prefs.base_background_color);
 | 
						|
 }
 | 
						|
 
 | 
						|
 /*static*/
 |