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 2541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2552 // The number of times the an app was launched from the app launcher since last | 2552 // The number of times the an app was launched from the app launcher since last |
2553 // ping and the time of the last ping. | 2553 // ping and the time of the last ping. |
2554 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2554 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
2555 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2555 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
2556 | 2556 |
2557 // How often the bubble has been shown. | 2557 // How often the bubble has been shown. |
2558 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; | 2558 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
2559 | 2559 |
2560 // A string pref for storing the salt used to compute the pepper device ID. | 2560 // A string pref for storing the salt used to compute the pepper device ID. |
2561 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2561 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
2562 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2562 // A boolean pref that enables the (private) pepper GetDeviceID() call and |
2563 // enables the use of remote attestation for content protection. | |
2563 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2564 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2564 | 2565 |
2565 // A boolean per-profile pref that signals if the watchdog extension is | 2566 // A boolean per-profile pref that signals if the watchdog extension is |
2566 // installed and active. We need to know if the watchdog extension active for | 2567 // installed and active. We need to know if the watchdog extension active for |
2567 // ActivityLog initialization before the extension system is initialized. | 2568 // ActivityLog initialization before the extension system is initialized. |
2568 const char kWatchdogExtensionActive[] = | 2569 const char kWatchdogExtensionActive[] = |
2569 "profile.extensions.activity_log.watchdog_extension_active"; | 2570 "profile.extensions.activity_log.watchdog_extension_active"; |
2570 | 2571 |
2572 // A boolean pref that tracks whether the user has already given consent for | |
2573 // enabling remote attestation for content protection. | |
2574 const char kRAConsentFirstTime[] = "settings.privacy.ra_consent"; | |
Mattias Nissler (ping if slow)
2013/09/03 14:31:25
These are chromeos-only, so they should be in an O
Darren Krahn
2013/09/04 12:35:05
Done.
| |
2575 // A DictionaryValue pref that tracks domains for which the user has explicitly | |
2576 // allowed or denied. | |
2577 const char kRAConsentDomains[] = "settings.privacy.ra_consent_domains"; | |
2578 // A boolean pref that tracks whether the user indicated they wish to be asked | |
2579 // for consent for every site that uses remote attestation. | |
2580 const char kRAConsentAlways[] = "settings.privacy.ra_consent_always"; | |
2581 | |
2571 } // namespace prefs | 2582 } // namespace prefs |
OLD | NEW |