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

Side by Side Diff: chrome/common/pref_names.cc

Issue 12310109: Add a shortcut to open the Apps page from the bookmark bar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
OLDNEW
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
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 1978 matching lines...) Expand 10 before | Expand all | Expand 10 after
2314 const char kRLZDisabled[] = "rlz.disabled"; 2318 const char kRLZDisabled[] = "rlz.disabled";
2315 #endif 2319 #endif
2316 2320
2317 #if defined(ENABLE_APP_LIST) 2321 #if defined(ENABLE_APP_LIST)
2318 // The directory in user data dir that contains the profile to be used with the 2322 // The directory in user data dir that contains the profile to be used with the
2319 // app launcher. 2323 // app launcher.
2320 extern const char kAppListProfile[] = "app_list.profile"; 2324 extern const char kAppListProfile[] = "app_list.profile";
2321 #endif 2325 #endif
2322 2326
2323 } // namespace prefs 2327 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698