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

Unified Diff: chrome/browser/policy/proto/device_management_local.proto

Issue 5331008: Persist 'this device is not managed' information (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build on Windows Created 10 years, 1 month 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/policy/proto/device_management_local.proto
diff --git a/chrome/browser/policy/proto/device_management_local.proto b/chrome/browser/policy/proto/device_management_local.proto
index ad7fc05a0ec1c8034ba98c7f2297f33cc712a63c..a991551dfc0e26e79c6920572ee045c2fe0656f1 100644
--- a/chrome/browser/policy/proto/device_management_local.proto
+++ b/chrome/browser/policy/proto/device_management_local.proto
@@ -13,9 +13,11 @@ import "device_management_backend.proto";
// Wrapper around DevicePolicyResponse for caching on disk.
message CachedDevicePolicyResponse {
// The DevicePolicyResponse wrapped by this message.
- required DevicePolicyResponse policy = 1;
+ optional DevicePolicyResponse policy = 1;
// Timestamp noting when this policy was cached.
optional uint64 timestamp = 2;
+ // Flag that is set to true if this device is not managed.
+ optional bool unmanaged = 3;
}
// Encapsulates a device ID and the associated device token.
« no previous file with comments | « chrome/browser/policy/device_management_policy_provider_unittest.cc ('k') | chrome/common/notification_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698