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

Unified Diff: chrome/browser/chromeos/policy/proto/chrome_device_policy.proto

Issue 12556004: Created AttestationPolicyObserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
diff --git a/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto b/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
index 34b8cfc69e9109bab43aa13c8940bb37b8014b4e..862f518b60ac5492e7640aeb1827f565c99471a7 100644
--- a/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
+++ b/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
@@ -279,6 +279,17 @@ message VariationsParameterProto {
optional string parameter = 1;
}
+message AttestationSettingsProto {
+ // Attestation involves proving that a cryptographic key is protected by a
+ // legitimate Chrome OS TPM and reporting the operating mode of the platform.
+ // This setting enables attestation features at a device level. If this is
+ // enabled a machine key will be generated and certified by the Chrome OS
+ // CA. If this setting is disabled, the device will not communicate with the
+ // Chrome OS CA under any circumstances. Even users with attestation settings
+ // enabled will not be able to use those features on the device.
+ optional bool attestation_enabled = 1;
+}
+
message ChromeDeviceSettingsProto {
optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
optional UserWhitelistProto user_whitelist = 2;
@@ -305,4 +316,5 @@ message ChromeDeviceSettingsProto {
optional StartUpFlagsProto start_up_flags = 23;
optional UptimeLimitProto uptime_limit = 24;
optional VariationsParameterProto variations_parameter = 25;
+ optional AttestationSettingsProto attestation_settings = 26;
}

Powered by Google App Engine
This is Rietveld 408576698