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

Side by Side Diff: webkit/glue/webpreferences.h

Issue 2809011: Enable HTML5 lexer by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 months 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 | « no previous file | webkit/tools/test_shell/test_shell.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // A struct for managing webkit's settings. 5 // A struct for managing webkit's settings.
6 // 6 //
7 // Adding new values to this class probably involves updating 7 // Adding new values to this class probably involves updating
8 // WebKit::WebSettings, common/render_messages.h, and 8 // WebKit::WebSettings, common/render_messages.h, and
9 // browser/profile.cc. 9 // browser/profile.cc.
10 10
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 databases_enabled(false), 102 databases_enabled(false),
103 application_cache_enabled(false), 103 application_cache_enabled(false),
104 tabs_to_links(true), 104 tabs_to_links(true),
105 user_style_sheet_enabled(false), 105 user_style_sheet_enabled(false),
106 author_and_user_styles_enabled(true), 106 author_and_user_styles_enabled(true),
107 allow_universal_access_from_file_urls(false), 107 allow_universal_access_from_file_urls(false),
108 allow_file_access_from_file_urls(false), 108 allow_file_access_from_file_urls(false),
109 experimental_webgl_enabled(false), 109 experimental_webgl_enabled(false),
110 show_composited_layer_borders(false), 110 show_composited_layer_borders(false),
111 accelerated_compositing_enabled(false), 111 accelerated_compositing_enabled(false),
112 enable_html5_parser(false) { 112 enable_html5_parser(true) {
113 } 113 }
114 114
115 void Apply(WebKit::WebView* web_view) const; 115 void Apply(WebKit::WebView* web_view) const;
116 }; 116 };
117 117
118 #endif // WEBKIT_GLUE_WEBPREFERENCES_H__ 118 #endif // WEBKIT_GLUE_WEBPREFERENCES_H__
OLDNEW
« no previous file with comments | « no previous file | webkit/tools/test_shell/test_shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698