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

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

Issue 2441653003: Enable fetching of admin policies for login screen apps (Closed)
Patch Set: Rebase Created 4 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 unified diff | Download patch
« no previous file with comments | « components/policy/core/common/schema_registry_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 message PolicyFetchRequest { 177 message PolicyFetchRequest {
178 // This is the policy type, which maps to D3 policy type internally. 178 // This is the policy type, which maps to D3 policy type internally.
179 // By convention, we use "/" as separator to create policy namespace. 179 // By convention, we use "/" as separator to create policy namespace.
180 // The policy type names are case insensitive. 180 // The policy type names are case insensitive.
181 // 181 //
182 // Possible values for Chrome OS are: 182 // Possible values for Chrome OS are:
183 // google/chromeos/device => ChromeDeviceSettingsProto 183 // google/chromeos/device => ChromeDeviceSettingsProto
184 // google/chromeos/user => ChromeSettingsProto 184 // google/chromeos/user => ChromeSettingsProto
185 // google/chromeos/publicaccount => ChromeSettingsProto 185 // google/chromeos/publicaccount => ChromeSettingsProto
186 // google/chrome/extension => ExternalPolicyData 186 // google/chrome/extension => ExternalPolicyData
187 // google/chromeos/signinextension => ExternalPolicyData
187 // google/android/user => ChromeSettingsProto 188 // google/android/user => ChromeSettingsProto
188 // google/ios/user => ChromeSettingsProto 189 // google/ios/user => ChromeSettingsProto
189 optional string policy_type = 1; 190 optional string policy_type = 1;
190 191
191 // This is the last policy timestamp that client received from server. 192 // This is the last policy timestamp that client received from server.
192 optional int64 timestamp = 2; 193 optional int64 timestamp = 2;
193 194
194 // Tell server what kind of security signature is required. 195 // Tell server what kind of security signature is required.
195 enum SignatureType { 196 enum SignatureType {
196 NONE = 0; 197 NONE = 0;
(...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 // Response to update device attribute. 1407 // Response to update device attribute.
1407 optional DeviceAttributeUpdateResponse device_attribute_update_response = 16; 1408 optional DeviceAttributeUpdateResponse device_attribute_update_response = 16;
1408 1409
1409 // Response to GCM id update request. 1410 // Response to GCM id update request.
1410 optional GcmIdUpdateResponse gcm_id_update_response = 17; 1411 optional GcmIdUpdateResponse gcm_id_update_response = 17;
1411 1412
1412 // Response to check Android management request. 1413 // Response to check Android management request.
1413 optional CheckAndroidManagementResponse 1414 optional CheckAndroidManagementResponse
1414 check_android_management_response = 18; 1415 check_android_management_response = 18;
1415 } 1416 }
OLDNEW
« no previous file with comments | « components/policy/core/common/schema_registry_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698