Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(891)

Side by Side Diff: webkit/common/webpreferences.cc

Issue 64843004: Get rid of user-level styles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge to ToT Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/common/webpreferences.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "webkit/common/webpreferences.h" 5 #include "webkit/common/webpreferences.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/strings/string_util.h" 8 #include "base/strings/string_util.h"
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "third_party/WebKit/public/web/WebSettings.h" 10 #include "third_party/WebKit/public/web/WebSettings.h"
(...skipping 25 matching lines...) Expand all
36 xslt_enabled(true), 36 xslt_enabled(true),
37 xss_auditor_enabled(true), 37 xss_auditor_enabled(true),
38 dns_prefetching_enabled(true), 38 dns_prefetching_enabled(true),
39 local_storage_enabled(false), 39 local_storage_enabled(false),
40 databases_enabled(false), 40 databases_enabled(false),
41 application_cache_enabled(false), 41 application_cache_enabled(false),
42 tabs_to_links(true), 42 tabs_to_links(true),
43 caret_browsing_enabled(false), 43 caret_browsing_enabled(false),
44 hyperlink_auditing_enabled(true), 44 hyperlink_auditing_enabled(true),
45 is_online(true), 45 is_online(true),
46 user_style_sheet_enabled(false),
47 allow_universal_access_from_file_urls(false), 46 allow_universal_access_from_file_urls(false),
48 allow_file_access_from_file_urls(false), 47 allow_file_access_from_file_urls(false),
49 webaudio_enabled(false), 48 webaudio_enabled(false),
50 experimental_webgl_enabled(false), 49 experimental_webgl_enabled(false),
51 flash_3d_enabled(true), 50 flash_3d_enabled(true),
52 flash_stage3d_enabled(false), 51 flash_stage3d_enabled(false),
53 flash_stage3d_baseline_enabled(false), 52 flash_stage3d_baseline_enabled(false),
54 gl_multisampling_enabled(true), 53 gl_multisampling_enabled(true),
55 privileged_webgl_extensions_enabled(false), 54 privileged_webgl_extensions_enabled(false),
56 webgl_errors_to_console_enabled(true), 55 webgl_errors_to_console_enabled(true),
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 COMPILE_ASSERT_MATCHING_ENUMS( 172 COMPILE_ASSERT_MATCHING_ENUMS(
174 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); 173 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac);
175 COMPILE_ASSERT_MATCHING_ENUMS( 174 COMPILE_ASSERT_MATCHING_ENUMS(
176 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); 175 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin);
177 COMPILE_ASSERT_MATCHING_ENUMS( 176 COMPILE_ASSERT_MATCHING_ENUMS(
178 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); 177 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix);
179 COMPILE_ASSERT_MATCHING_ENUMS( 178 COMPILE_ASSERT_MATCHING_ENUMS(
180 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); 179 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid);
181 180
182 } // namespace webkit_glue 181 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/common/webpreferences.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698