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

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

Issue 8705: Remove the dashboard_compatibility_mode member from the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 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 | « chrome/common/render_messages.h ('k') | webkit/tools/test_shell/test_shell_mac.mm » ('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 // WebViewImpl::SetPreferences, common/render_messages.h, and 8 // WebViewImpl::SetPreferences, common/render_messages.h, and
9 // browser/profile.cc. 9 // browser/profile.cc.
10 10
(...skipping 17 matching lines...) Expand all
28 std::wstring default_encoding; 28 std::wstring default_encoding;
29 bool javascript_enabled; 29 bool javascript_enabled;
30 bool javascript_can_open_windows_automatically; 30 bool javascript_can_open_windows_automatically;
31 bool loads_images_automatically; 31 bool loads_images_automatically;
32 bool plugins_enabled; 32 bool plugins_enabled;
33 bool dom_paste_enabled; 33 bool dom_paste_enabled;
34 bool developer_extras_enabled; 34 bool developer_extras_enabled;
35 bool shrinks_standalone_images_to_fit; 35 bool shrinks_standalone_images_to_fit;
36 bool uses_universal_detector; 36 bool uses_universal_detector;
37 bool text_areas_are_resizable; 37 bool text_areas_are_resizable;
38 bool dashboard_compatibility_mode;
39 bool java_enabled; 38 bool java_enabled;
40 bool allow_scripts_to_close_windows; 39 bool allow_scripts_to_close_windows;
41 bool uses_page_cache; 40 bool uses_page_cache;
42 41
43 // TODO(tc): User style sheets will not work in chrome because it tries to 42 // TODO(tc): User style sheets will not work in chrome because it tries to
44 // load the style sheet using a request without a frame. 43 // load the style sheet using a request without a frame.
45 bool user_style_sheet_enabled; 44 bool user_style_sheet_enabled;
46 GURL user_style_sheet_location; 45 GURL user_style_sheet_location;
47 46
48 // We try to keep the default values the same as the default values in 47 // We try to keep the default values the same as the default values in
(...skipping 21 matching lines...) Expand all
70 uses_universal_detector(false), // Disabled: page cycler regression 69 uses_universal_detector(false), // Disabled: page cycler regression
71 text_areas_are_resizable(true), 70 text_areas_are_resizable(true),
72 java_enabled(true), 71 java_enabled(true),
73 allow_scripts_to_close_windows(false), 72 allow_scripts_to_close_windows(false),
74 uses_page_cache(false), 73 uses_page_cache(false),
75 user_style_sheet_enabled(false) { 74 user_style_sheet_enabled(false) {
76 } 75 }
77 }; 76 };
78 77
79 #endif // WEBKIT_GLUE_WEBPREFERENCES_H__ 78 #endif // WEBKIT_GLUE_WEBPREFERENCES_H__
OLDNEW
« no previous file with comments | « chrome/common/render_messages.h ('k') | webkit/tools/test_shell/test_shell_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698