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

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

Powered by Google App Engine
This is Rietveld 408576698