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

Side by Side Diff: chrome/browser/policy/proto/device_management_local.proto

Issue 6523058: New policy protobuf protocol. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 syntax = "proto2"; 5 syntax = "proto2";
6 6
7 option optimize_for = LITE_RUNTIME; 7 option optimize_for = LITE_RUNTIME;
8 8
9 package enterprise_management; 9 package enterprise_management;
10 10
11 import "device_management_backend.proto"; 11 import "device_management_backend.proto";
12 12
13 // Wrapper around DevicePolicyResponse for caching on disk. 13 // Wrapper around CloudPolicyResponse/DevicePolicyResponse for caching on disk.
14 message CachedDevicePolicyResponse { 14 message CachedCloudPolicyResponse {
15 // The DevicePolicyResponse wrapped by this message. 15 // The DevicePolicyResponse wrapped by this message.
16 optional DevicePolicyResponse policy = 1; 16 optional DevicePolicyResponse device_policy = 1;
17 // Timestamp noting when this policy was cached. 17 // Timestamp noting when the |unmanaged| flag was set. The data format is
18 // a unix timestamp. When caching (deprecated) DevicePolicyResponses, this
19 // timestamp also notes when the response was cached.
18 optional uint64 timestamp = 2; 20 optional uint64 timestamp = 2;
19 // Flag that is set to true if this device is not managed. 21 // Flag that is set to true if this device is not managed.
20 optional bool unmanaged = 3; 22 optional bool unmanaged = 3;
23 // The CloudPolicyResponse wrapped by this message.
24 optional CloudPolicyResponse cloud_policy = 4;
21 } 25 }
22 26
23 // Encapsulates a device ID and the associated device token. 27 // Encapsulates a device ID and the associated device token.
24 message DeviceCredentials { 28 message DeviceCredentials {
25 optional string device_id = 1; 29 optional string device_id = 1;
26 optional string device_token = 2; 30 optional string device_token = 2;
27 } 31 }
28 32
OLDNEW
« no previous file with comments | « chrome/browser/policy/proto/device_management_backend.proto ('k') | chrome/browser/policy/proto/device_management_proto.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698