Index: chrome/common/pref_names.cc |
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc |
index 28a871fe4433dde43f23d4ed3b7f5b1ed962386a..488515ef5b64a5969829c9b2634a9c439ec21a07 100644 |
--- a/chrome/common/pref_names.cc |
+++ b/chrome/common/pref_names.cc |
@@ -2559,7 +2559,8 @@ extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
// A string pref for storing the salt used to compute the pepper device ID. |
const char kDRMSalt[] = "settings.privacy.drm_salt"; |
-// A boolean pref that enables the (private) pepper GetDeviceID() call. |
+// A boolean pref that enables the (private) pepper GetDeviceID() call and |
+// enables the use of remote attestation for content protection. |
const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
// A boolean per-profile pref that signals if the watchdog extension is |
@@ -2568,4 +2569,14 @@ const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
const char kWatchdogExtensionActive[] = |
"profile.extensions.activity_log.watchdog_extension_active"; |
+// A boolean pref that tracks whether the user has already given consent for |
+// enabling remote attestation for content protection. |
+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.
|
+// A DictionaryValue pref that tracks domains for which the user has explicitly |
+// allowed or denied. |
+const char kRAConsentDomains[] = "settings.privacy.ra_consent_domains"; |
+// A boolean pref that tracks whether the user indicated they wish to be asked |
+// for consent for every site that uses remote attestation. |
+const char kRAConsentAlways[] = "settings.privacy.ra_consent_always"; |
+ |
} // namespace prefs |