OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 const char kWebKitDefaultFixedFontSize[] = | 230 const char kWebKitDefaultFixedFontSize[] = |
231 "webkit.webprefs.default_fixed_font_size"; | 231 "webkit.webprefs.default_fixed_font_size"; |
232 const char kWebKitMinimumFontSize[] = "webkit.webprefs.minimum_font_size"; | 232 const char kWebKitMinimumFontSize[] = "webkit.webprefs.minimum_font_size"; |
233 const char kWebKitMinimumLogicalFontSize[] = | 233 const char kWebKitMinimumLogicalFontSize[] = |
234 "webkit.webprefs.minimum_logical_font_size"; | 234 "webkit.webprefs.minimum_logical_font_size"; |
235 const char kWebKitJavascriptEnabled[] = "webkit.webprefs.javascript_enabled"; | 235 const char kWebKitJavascriptEnabled[] = "webkit.webprefs.javascript_enabled"; |
236 const char kWebKitJavascriptCanOpenWindowsAutomatically[] = | 236 const char kWebKitJavascriptCanOpenWindowsAutomatically[] = |
237 "webkit.webprefs.javascript_can_open_windows_automatically"; | 237 "webkit.webprefs.javascript_can_open_windows_automatically"; |
238 const char kWebKitLoadsImagesAutomatically[] = | 238 const char kWebKitLoadsImagesAutomatically[] = |
239 "webkit.webprefs.loads_images_automatically"; | 239 "webkit.webprefs.loads_images_automatically"; |
| 240 const char kWebKitImagesEnabled[] = |
| 241 "webkit.webprefs.images_enabled"; |
240 const char kWebKitPluginsEnabled[] = "webkit.webprefs.plugins_enabled"; | 242 const char kWebKitPluginsEnabled[] = "webkit.webprefs.plugins_enabled"; |
241 | 243 |
242 // Boolean which specifies whether the bookmark bar is visible on all tabs. | 244 // Boolean which specifies whether the bookmark bar is visible on all tabs. |
243 const char kShowBookmarkBar[] = "bookmark_bar.show_on_all_tabs"; | 245 const char kShowBookmarkBar[] = "bookmark_bar.show_on_all_tabs"; |
244 | 246 |
245 // Boolean which specifies the ids of the bookmark nodes that are expanded in | 247 // Boolean which specifies the ids of the bookmark nodes that are expanded in |
246 // the bookmark editor. | 248 // the bookmark editor. |
247 const char kBookmarkEditorExpandedNodes[] = "bookmark_editor.expanded_nodes"; | 249 const char kBookmarkEditorExpandedNodes[] = "bookmark_editor.expanded_nodes"; |
248 | 250 |
249 // Boolean that is true if the password manager is on (will record new | 251 // Boolean that is true if the password manager is on (will record new |
(...skipping 1473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1723 // String that stores the component updater last known state. This is used for | 1725 // String that stores the component updater last known state. This is used for |
1724 // troubleshooting. | 1726 // troubleshooting. |
1725 const char kComponentUpdaterState[] = "component_updater.state"; | 1727 const char kComponentUpdaterState[] = "component_updater.state"; |
1726 | 1728 |
1727 // Set to true if Protector should be enabled. | 1729 // Set to true if Protector should be enabled. |
1728 // TODO(ivankr): This is a temporary solution for testing and will be removed | 1730 // TODO(ivankr): This is a temporary solution for testing and will be removed |
1729 // soon. | 1731 // soon. |
1730 const char kProtectorEnabled[] = "protector.enabled"; | 1732 const char kProtectorEnabled[] = "protector.enabled"; |
1731 | 1733 |
1732 } // namespace prefs | 1734 } // namespace prefs |
OLD | NEW |