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 #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 2494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2505 "apps.app_launcher.should_show_apps_page"; | 2505 "apps.app_launcher.should_show_apps_page"; |
2506 | 2506 |
2507 // Integer representing the version of the app launcher shortcut installed on | 2507 // Integer representing the version of the app launcher shortcut installed on |
2508 // the system. Incremented, e.g., when embedded icons change. | 2508 // the system. Incremented, e.g., when embedded icons change. |
2509 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; | 2509 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; |
2510 | 2510 |
2511 // A boolean identifying if we should show the app launcher promo or not. | 2511 // A boolean identifying if we should show the app launcher promo or not. |
2512 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; | 2512 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; |
2513 #endif | 2513 #endif |
2514 | 2514 |
| 2515 // If set, the user requested to launch the app with this extension id while |
| 2516 // in Metro mode, and then relaunched to Desktop mode to start it. |
| 2517 const char kAppLaunchForMetroRestart[] = "apps.app_launch_for_metro_restart"; |
| 2518 |
| 2519 // Set with |kAppLaunchForMetroRestart|, the profile whose loading triggers |
| 2520 // launch of the specified app when restarting Chrome in desktop mode. |
| 2521 const char kAppLaunchForMetroRestartProfile[] = |
| 2522 "apps.app_launch_for_metro_restart_profile"; |
| 2523 |
2515 // A boolean that indicates whether app shortcuts have been created. | 2524 // A boolean that indicates whether app shortcuts have been created. |
2516 // On a transition from false to true, shortcuts are created for all apps. | 2525 // On a transition from false to true, shortcuts are created for all apps. |
2517 const char kAppShortcutsHaveBeenCreated[] = "apps.shortcuts_have_been_created"; | 2526 const char kAppShortcutsHaveBeenCreated[] = "apps.shortcuts_have_been_created"; |
2518 | 2527 |
2519 // How often the bubble has been shown. | 2528 // How often the bubble has been shown. |
2520 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; | 2529 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
2521 | 2530 |
2522 // A string pref for storing the salt used to compute the pepper device ID. | 2531 // A string pref for storing the salt used to compute the pepper device ID. |
2523 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2532 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
2524 // A boolean pref that enables the (private) pepper GetDeviceID() call and | 2533 // A boolean pref that enables the (private) pepper GetDeviceID() call and |
2525 // enables the use of remote attestation for content protection. | 2534 // enables the use of remote attestation for content protection. |
2526 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2535 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2527 | 2536 |
2528 // A boolean per-profile pref that signals if the watchdog extension is | 2537 // A boolean per-profile pref that signals if the watchdog extension is |
2529 // installed and active. We need to know if the watchdog extension active for | 2538 // installed and active. We need to know if the watchdog extension active for |
2530 // ActivityLog initialization before the extension system is initialized. | 2539 // ActivityLog initialization before the extension system is initialized. |
2531 const char kWatchdogExtensionActive[] = | 2540 const char kWatchdogExtensionActive[] = |
2532 "profile.extensions.activity_log.watchdog_extension_active"; | 2541 "profile.extensions.activity_log.watchdog_extension_active"; |
2533 | 2542 |
2534 // A dictionary pref which maps profile names to dictionary values which hold | 2543 // A dictionary pref which maps profile names to dictionary values which hold |
2535 // hashes of profile prefs that we track to detect changes that happen outside | 2544 // hashes of profile prefs that we track to detect changes that happen outside |
2536 // of Chrome. | 2545 // of Chrome. |
2537 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; | 2546 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; |
2538 | 2547 |
2539 // Stores a pair of local time and corresponding network time to bootstrap | 2548 // Stores a pair of local time and corresponding network time to bootstrap |
2540 // network time tracker when browser starts. | 2549 // network time tracker when browser starts. |
2541 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; | 2550 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; |
2542 | 2551 |
2543 } // namespace prefs | 2552 } // namespace prefs |
OLD | NEW |