mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-04-13 10:22:07 +02:00
- Remove CefSettings.accelerated_compositing option (see https://crbug.com/363772). - Remove experimental x-webkit-speech support (see https://crbug.com/223198). - Execute CefGeolocationHandler callbacks on the UI thread (see https://crbug.com/304341#c212). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1711 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
26 lines
1.2 KiB
Diff
26 lines
1.2 KiB
Diff
Index: public/common/common_param_traits_macros.h
|
|
===================================================================
|
|
--- public/common/common_param_traits_macros.h (revision 272007)
|
|
+++ public/common/common_param_traits_macros.h (working copy)
|
|
@@ -175,6 +175,7 @@
|
|
IPC_STRUCT_TRAITS_MEMBER(initialize_at_minimum_page_scale)
|
|
IPC_STRUCT_TRAITS_MEMBER(smart_insert_delete_enabled)
|
|
IPC_STRUCT_TRAITS_MEMBER(compositor_touch_hit_testing)
|
|
+ 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)
|
|
Index: renderer/web_preferences.cc
|
|
===================================================================
|
|
--- renderer/web_preferences.cc (revision 272007)
|
|
+++ renderer/web_preferences.cc (working copy)
|
|
@@ -165,6 +165,8 @@
|
|
|
|
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.
|