diff options
author | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-06 01:13:26 +0000 |
---|---|---|
committer | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-06 01:13:26 +0000 |
commit | 5b85bd84c9ce927f0794969c6ec66d58903d8ec5 (patch) | |
tree | 9b39f3c7bca9cf2d065d0b9e6096808a37939269 /webkit/glue | |
parent | 1147c088a7c2b047f4d12b41500777ada7293e1c (diff) | |
download | chromium_src-5b85bd84c9ce927f0794969c6ec66d58903d8ec5.zip chromium_src-5b85bd84c9ce927f0794969c6ec66d58903d8ec5.tar.gz chromium_src-5b85bd84c9ce927f0794969c6ec66d58903d8ec5.tar.bz2 |
Order of preferences needs to match serialization.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/242151
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28083 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r-- | webkit/glue/webpreferences.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/glue/webpreferences.h b/webkit/glue/webpreferences.h index 7d34be6..c875228 100644 --- a/webkit/glue/webpreferences.h +++ b/webkit/glue/webpreferences.h @@ -49,7 +49,6 @@ struct WebPreferences { bool session_storage_enabled; bool application_cache_enabled; bool tabs_to_links; - bool experimental_notifications_enabled; // TODO(tc): User style sheets will not work in chrome because it tries to // load the style sheet using a request without a frame. @@ -59,6 +58,7 @@ struct WebPreferences { bool allow_universal_access_from_file_urls; bool experimental_webgl_enabled; + bool experimental_notifications_enabled; // We try to keep the default values the same as the default values in // chrome, except for the cases where it would require lots of extra work for @@ -95,10 +95,10 @@ struct WebPreferences { session_storage_enabled(false), application_cache_enabled(false), tabs_to_links(true), - experimental_notifications_enabled(false), user_style_sheet_enabled(false), allow_universal_access_from_file_urls(false), - experimental_webgl_enabled(false) { + experimental_webgl_enabled(false), + experimental_notifications_enabled(false) { } void Apply(WebView* web_view) const; |