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

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

Issue 263403002: Replace OnceOffCreateShortcuts with UpdateShortcutsForAllAppsIfNeeded. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 6 years, 6 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | 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) 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 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 2454 matching lines...) Expand 10 before | Expand all | Expand 10 after
2465 2465
2466 // If set, the user requested to launch the app with this extension id while 2466 // If set, the user requested to launch the app with this extension id while
2467 // in Metro mode, and then relaunched to Desktop mode to start it. 2467 // in Metro mode, and then relaunched to Desktop mode to start it.
2468 const char kAppLaunchForMetroRestart[] = "apps.app_launch_for_metro_restart"; 2468 const char kAppLaunchForMetroRestart[] = "apps.app_launch_for_metro_restart";
2469 2469
2470 // Set with |kAppLaunchForMetroRestart|, the profile whose loading triggers 2470 // Set with |kAppLaunchForMetroRestart|, the profile whose loading triggers
2471 // launch of the specified app when restarting Chrome in desktop mode. 2471 // launch of the specified app when restarting Chrome in desktop mode.
2472 const char kAppLaunchForMetroRestartProfile[] = 2472 const char kAppLaunchForMetroRestartProfile[] =
2473 "apps.app_launch_for_metro_restart_profile"; 2473 "apps.app_launch_for_metro_restart_profile";
2474 2474
2475 // A boolean that indicates whether app shortcuts have been created. 2475 // An integer that is incremented whenever changes are made to app shortcuts.
2476 // On a transition from false to true, shortcuts are created for all apps. 2476 // Increasing this causes all app shortcuts to be recreated.
2477 const char kAppShortcutsHaveBeenCreated[] = "apps.shortcuts_have_been_created"; 2477 const char kAppShortcutsVersion[] = "apps.shortcuts_version";
2478 2478
2479 // How often the bubble has been shown. 2479 // How often the bubble has been shown.
2480 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; 2480 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown";
2481 2481
2482 // A string pref for storing the salt used to compute the pepper device ID. 2482 // A string pref for storing the salt used to compute the pepper device ID.
2483 const char kDRMSalt[] = "settings.privacy.drm_salt"; 2483 const char kDRMSalt[] = "settings.privacy.drm_salt";
2484 // A boolean pref that enables the (private) pepper GetDeviceID() call and 2484 // A boolean pref that enables the (private) pepper GetDeviceID() call and
2485 // enables the use of remote attestation for content protection. 2485 // enables the use of remote attestation for content protection.
2486 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2486 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2487 2487
(...skipping 21 matching lines...) Expand all
2509 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2509 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2510 // given by the PartnerBookmarksProvider and either the user-visible renamed 2510 // given by the PartnerBookmarksProvider and either the user-visible renamed
2511 // title or an empty string if the bookmark node was removed. 2511 // title or an empty string if the bookmark node was removed.
2512 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2512 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2513 #endif 2513 #endif
2514 2514
2515 // Whether DNS Quick Check is disabled in proxy resolution. 2515 // Whether DNS Quick Check is disabled in proxy resolution.
2516 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2516 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2517 2517
2518 } // namespace prefs 2518 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698