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 2478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2489 | 2489 |
2490 // If set, the user requested to launch the app with this extension id while | 2490 // If set, the user requested to launch the app with this extension id while |
2491 // in Metro mode, and then relaunched to Desktop mode to start it. | 2491 // in Metro mode, and then relaunched to Desktop mode to start it. |
2492 const char kAppLaunchForMetroRestart[] = "apps.app_launch_for_metro_restart"; | 2492 const char kAppLaunchForMetroRestart[] = "apps.app_launch_for_metro_restart"; |
2493 | 2493 |
2494 // Set with |kAppLaunchForMetroRestart|, the profile whose loading triggers | 2494 // Set with |kAppLaunchForMetroRestart|, the profile whose loading triggers |
2495 // launch of the specified app when restarting Chrome in desktop mode. | 2495 // launch of the specified app when restarting Chrome in desktop mode. |
2496 const char kAppLaunchForMetroRestartProfile[] = | 2496 const char kAppLaunchForMetroRestartProfile[] = |
2497 "apps.app_launch_for_metro_restart_profile"; | 2497 "apps.app_launch_for_metro_restart_profile"; |
2498 | 2498 |
2499 // A boolean that indicates whether app shortcuts have been created. | 2499 // An integer that is incremented whenever changes are made to app shortcuts. |
2500 // On a transition from false to true, shortcuts are created for all apps. | 2500 // Changing this causes all app shortcuts to be recreated. |
2501 const char kAppShortcutsHaveBeenCreated[] = "apps.shortcuts_have_been_created"; | 2501 const char kAppShortcutsVersion[] = "apps.shortcuts_version"; |
2502 | 2502 |
2503 // How often the bubble has been shown. | 2503 // How often the bubble has been shown. |
2504 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; | 2504 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
2505 | 2505 |
2506 // A string pref for storing the salt used to compute the pepper device ID. | 2506 // A string pref for storing the salt used to compute the pepper device ID. |
2507 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2507 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
2508 // A boolean pref that enables the (private) pepper GetDeviceID() call and | 2508 // A boolean pref that enables the (private) pepper GetDeviceID() call and |
2509 // enables the use of remote attestation for content protection. | 2509 // enables the use of remote attestation for content protection. |
2510 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2510 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2511 | 2511 |
(...skipping 21 matching lines...) Expand all Loading... |
2533 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2533 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2534 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2534 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2535 // title or an empty string if the bookmark node was removed. | 2535 // title or an empty string if the bookmark node was removed. |
2536 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2536 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2537 #endif | 2537 #endif |
2538 | 2538 |
2539 // Whether DNS Quick Check is disabled in proxy resolution. | 2539 // Whether DNS Quick Check is disabled in proxy resolution. |
2540 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2540 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2541 | 2541 |
2542 } // namespace prefs | 2542 } // namespace prefs |
OLD | NEW |