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

Side by Side Diff: components/policy/proto/device_management_backend.proto

Issue 1094493003: Initial RemoteCommandsInvalidator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: fixes addressing #7 and #8 Created 5 years, 7 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 ENTERPRISE_MANAGED = 1; 343 ENTERPRISE_MANAGED = 1;
344 // The device is consumer-managed. The policies currently can only be set 344 // The device is consumer-managed. The policies currently can only be set
345 // by the local owner of the device. 345 // by the local owner of the device.
346 CONSUMER_MANAGED = 2; 346 CONSUMER_MANAGED = 2;
347 } 347 }
348 optional ManagementMode management_mode = 16; 348 optional ManagementMode management_mode = 16;
349 349
350 // Indicates the state that the device should be in. 350 // Indicates the state that the device should be in.
351 optional DeviceState device_state = 17; 351 optional DeviceState device_state = 17;
352 352
353 // The object source which hosts command queue objects within the
354 // invalidation service. This value is combined with
355 // command_invalidation_name to form the object ID used to
356 // register for invalidations to the command queue.
357 optional int32 command_invalidation_source = 18;
358
359 // The name which uniquely identifies this device’s queue within
360 // the invalidation service object source. This value is combined
361 // with command_invalidation_source to form the object ID used to
362 // register for invalidations to the command queue.
363 optional bytes command_invalidation_name = 19;
364
353 // The free-text location info the admin enters to associate the device 365 // The free-text location info the admin enters to associate the device
354 // with a location. 366 // with a location.
355 optional string annotated_location = 20; 367 optional string annotated_location = 20;
356 368
357 // The free-text asset identifier the admin enters to associate the device 369 // The free-text asset identifier the admin enters to associate the device
358 // with a user-generated identifier. 370 // with a user-generated identifier.
359 optional string annotated_asset_id = 21; 371 optional string annotated_asset_id = 21;
360 372
361 // The unique directory api ID of the device which was generated on the 373 // The unique directory api ID of the device which was generated on the
362 // server-side. 374 // server-side.
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 // Response to remote command request. 1152 // Response to remote command request.
1141 optional DeviceRemoteCommandResponse remote_command_response = 14; 1153 optional DeviceRemoteCommandResponse remote_command_response = 14;
1142 1154
1143 // Response to check device attribute update permission. 1155 // Response to check device attribute update permission.
1144 optional DeviceAttributeUpdatePermissionResponse 1156 optional DeviceAttributeUpdatePermissionResponse
1145 device_attribute_update_permission_response = 15; 1157 device_attribute_update_permission_response = 15;
1146 1158
1147 // Response to update device attribute. 1159 // Response to update device attribute.
1148 optional DeviceAttributeUpdateResponse device_attribute_update_response = 16; 1160 optional DeviceAttributeUpdateResponse device_attribute_update_response = 16;
1149 } 1161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698