| 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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 const char kWebKitJavascriptEnabled[] = "webkit.webprefs.javascript_enabled"; | 316 const char kWebKitJavascriptEnabled[] = "webkit.webprefs.javascript_enabled"; |
| 317 const char kWebKitJavascriptCanOpenWindowsAutomatically[] = | 317 const char kWebKitJavascriptCanOpenWindowsAutomatically[] = |
| 318 "webkit.webprefs.javascript_can_open_windows_automatically"; | 318 "webkit.webprefs.javascript_can_open_windows_automatically"; |
| 319 const char kWebKitLoadsImagesAutomatically[] = | 319 const char kWebKitLoadsImagesAutomatically[] = |
| 320 "webkit.webprefs.loads_images_automatically"; | 320 "webkit.webprefs.loads_images_automatically"; |
| 321 const char kWebKitPluginsEnabled[] = "webkit.webprefs.plugins_enabled"; | 321 const char kWebKitPluginsEnabled[] = "webkit.webprefs.plugins_enabled"; |
| 322 | 322 |
| 323 // Boolean which specifies whether the bookmark bar is visible on all tabs. | 323 // Boolean which specifies whether the bookmark bar is visible on all tabs. |
| 324 const char kShowBookmarkBar[] = "bookmark_bar.show_on_all_tabs"; | 324 const char kShowBookmarkBar[] = "bookmark_bar.show_on_all_tabs"; |
| 325 | 325 |
| 326 // Boolean which specifies whether the apps shortcut is visible on the bookmark |
| 327 // bar. |
| 328 const char kShowAppsShortcutInBookmarkBar[] = "bookmark_bar.show_apps_shortcut"; |
| 329 |
| 326 // Boolean which specifies the ids of the bookmark nodes that are expanded in | 330 // Boolean which specifies the ids of the bookmark nodes that are expanded in |
| 327 // the bookmark editor. | 331 // the bookmark editor. |
| 328 const char kBookmarkEditorExpandedNodes[] = "bookmark_editor.expanded_nodes"; | 332 const char kBookmarkEditorExpandedNodes[] = "bookmark_editor.expanded_nodes"; |
| 329 | 333 |
| 330 // Boolean that is true if the password manager is on (will record new | 334 // Boolean that is true if the password manager is on (will record new |
| 331 // passwords and fill in known passwords). | 335 // passwords and fill in known passwords). |
| 332 const char kPasswordManagerEnabled[] = "profile.password_manager_enabled"; | 336 const char kPasswordManagerEnabled[] = "profile.password_manager_enabled"; |
| 333 | 337 |
| 334 // Boolean controlling whether the password manager allows to retrieve passwords | 338 // Boolean controlling whether the password manager allows to retrieve passwords |
| 335 // in clear text. | 339 // in clear text. |
| (...skipping 1984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2320 const char kRLZBrand[] = "rlz.brand"; | 2324 const char kRLZBrand[] = "rlz.brand"; |
| 2321 // Whether RLZ pings are disabled. | 2325 // Whether RLZ pings are disabled. |
| 2322 const char kRLZDisabled[] = "rlz.disabled"; | 2326 const char kRLZDisabled[] = "rlz.disabled"; |
| 2323 #endif | 2327 #endif |
| 2324 | 2328 |
| 2325 // The directory in user data dir that contains the profile to be used with the | 2329 // The directory in user data dir that contains the profile to be used with the |
| 2326 // app launcher. | 2330 // app launcher. |
| 2327 extern const char kAppListProfile[] = "app_list.profile"; | 2331 extern const char kAppListProfile[] = "app_list.profile"; |
| 2328 | 2332 |
| 2329 } // namespace prefs | 2333 } // namespace prefs |
| OLD | NEW |