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

Unified Diff: components/policy/proto/device_management_backend.proto

Issue 676773002: Add device disabling to OOBE flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update browser tests. Created 6 years, 2 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
« no previous file with comments | « chromeos/chromeos_switches.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/policy/proto/device_management_backend.proto
diff --git a/components/policy/proto/device_management_backend.proto b/components/policy/proto/device_management_backend.proto
index 0425d1087278d148c52e39128f30164d44626550..e3b69391b23cb8c3f0763ddae0f6e085323e82a7 100644
--- a/components/policy/proto/device_management_backend.proto
+++ b/components/policy/proto/device_management_backend.proto
@@ -599,6 +599,11 @@ message DeviceStateKeyUpdateRequest {
repeated bytes server_backed_state_key = 1;
}
+message DisabledState {
+ // A message to the finder/thief that should be shown on the screen.
+ optional string message = 1;
+}
+
// Server to client message carrying the device state response. Because the
// request is not authenticated, the only protection against state extraction
// from server is the unpredictability of the server-backed state ID. Thus, the
@@ -620,6 +625,9 @@ message DeviceStateRetrievalResponse {
// Primary domain the device is associated with.
optional string management_domain = 2;
+
+ // The device is disabled and no logins are possible when this is set.
+ optional DisabledState disabled_state = 3;
}
// Sent by the client to the server to pair the Host device with the Controller
« no previous file with comments | « chromeos/chromeos_switches.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698