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 public/common/common_param_traits_macros.h public/common/common_param_traits_macros.h
 | 
						|
index 53f1128..46bbcf8 100644
 | 
						|
--- public/common/common_param_traits_macros.h
 | 
						|
+++ public/common/common_param_traits_macros.h
 | 
						|
@@ -194,6 +194,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 public/common/web_preferences.cc public/common/web_preferences.cc
 | 
						|
index 039a5ff..6c2e08c 100644
 | 
						|
--- public/common/web_preferences.cc
 | 
						|
+++ public/common/web_preferences.cc
 | 
						|
@@ -189,6 +189,7 @@ WebPreferences::WebPreferences()
 | 
						|
       pinch_overlay_scrollbar_thickness(0),
 | 
						|
       use_solid_color_scrollbars(false),
 | 
						|
       navigate_on_drag_drop(true),
 | 
						|
+      base_background_color(0xFFFFFFFF),  // Color::white
 | 
						|
       v8_cache_options(V8_CACHE_OPTIONS_DEFAULT),
 | 
						|
       slimming_paint_enabled(false),
 | 
						|
       cookie_enabled(true),
 | 
						|
diff --git public/common/web_preferences.h public/common/web_preferences.h
 | 
						|
index 8d25487..23b25ae 100644
 | 
						|
--- public/common/web_preferences.h
 | 
						|
+++ public/common/web_preferences.h
 | 
						|
@@ -181,6 +181,7 @@ struct CONTENT_EXPORT WebPreferences {
 | 
						|
   int pinch_overlay_scrollbar_thickness;
 | 
						|
   bool use_solid_color_scrollbars;
 | 
						|
   bool navigate_on_drag_drop;
 | 
						|
+  uint32_t base_background_color;
 | 
						|
   V8CacheOptions v8_cache_options;
 | 
						|
   bool slimming_paint_enabled;
 | 
						|
 
 | 
						|
diff --git renderer/render_view_impl.cc renderer/render_view_impl.cc
 | 
						|
index 84340d4..76187de 100644
 | 
						|
--- renderer/render_view_impl.cc
 | 
						|
+++ renderer/render_view_impl.cc
 | 
						|
@@ -932,6 +932,8 @@ void RenderView::ApplyWebPreferences(const WebPreferences& prefs,
 | 
						|
 
 | 
						|
   settings->setJavaEnabled(prefs.java_enabled);
 | 
						|
 
 | 
						|
+  web_view->setBaseBackgroundColor(prefs.base_background_color);
 | 
						|
+
 | 
						|
   // By default, allow_universal_access_from_file_urls is set to false and thus
 | 
						|
   // we mitigate attacks from local HTML files by not granting file:// URLs
 | 
						|
   // universal access. Only test shell will enable this.
 |