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 2005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2341 const char kRLZBrand[] = "rlz.brand"; | 2345 const char kRLZBrand[] = "rlz.brand"; |
2342 // Whether RLZ pings are disabled. | 2346 // Whether RLZ pings are disabled. |
2343 const char kRLZDisabled[] = "rlz.disabled"; | 2347 const char kRLZDisabled[] = "rlz.disabled"; |
2344 #endif | 2348 #endif |
2345 | 2349 |
2346 // The directory in user data dir that contains the profile to be used with the | 2350 // The directory in user data dir that contains the profile to be used with the |
2347 // app launcher. | 2351 // app launcher. |
2348 extern const char kAppListProfile[] = "app_list.profile"; | 2352 extern const char kAppListProfile[] = "app_list.profile"; |
2349 | 2353 |
2350 } // namespace prefs | 2354 } // namespace prefs |
OLD | NEW |