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

Side by Side Diff: chrome/browser/chromeos/policy/proto/chrome_device_policy.proto

Issue 12556004: Created AttestationPolicyObserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 266
267 message UptimeLimitProto { 267 message UptimeLimitProto {
268 // Sets the length of device uptime after which an automatic reboot is 268 // Sets the length of device uptime after which an automatic reboot is
269 // scheduled. An automatic reboot is scheduled at the selected time but may be 269 // scheduled. An automatic reboot is scheduled at the selected time but may be
270 // delayed on the device by up to 24 hours, e.g. if a user is currently using 270 // delayed on the device by up to 24 hours, e.g. if a user is currently using
271 // the device or an app/extension has requested reboots to be inhibited 271 // the device or an app/extension has requested reboots to be inhibited
272 // temporarily. The policy value should be specified in seconds. 272 // temporarily. The policy value should be specified in seconds.
273 optional int64 uptime_limit = 1; 273 optional int64 uptime_limit = 1;
274 } 274 }
275 275
276 message AttestationSettingsProto {
277 // Whether attestation features are enabled for the device.
Mattias Nissler (ping if slow) 2013/04/10 17:31:03 Might want to elaborate a bit for people who have
dkrahn 2013/04/12 01:17:29 Done.
278 optional bool attestation_enabled = 1;
279 }
280
276 message ChromeDeviceSettingsProto { 281 message ChromeDeviceSettingsProto {
277 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; 282 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
278 optional UserWhitelistProto user_whitelist = 2; 283 optional UserWhitelistProto user_whitelist = 2;
279 optional GuestModeEnabledProto guest_mode_enabled = 3; 284 optional GuestModeEnabledProto guest_mode_enabled = 3;
280 optional DeviceProxySettingsProto device_proxy_settings = 4; 285 optional DeviceProxySettingsProto device_proxy_settings = 4;
281 optional CameraEnabledProto camera_enabled = 5; 286 optional CameraEnabledProto camera_enabled = 5;
282 optional ShowUserNamesOnSigninProto show_user_names = 6; 287 optional ShowUserNamesOnSigninProto show_user_names = 6;
283 optional DataRoamingEnabledProto data_roaming_enabled = 7; 288 optional DataRoamingEnabledProto data_roaming_enabled = 7;
284 optional AllowNewUsersProto allow_new_users = 8; 289 optional AllowNewUsersProto allow_new_users = 8;
285 optional MetricsEnabledProto metrics_enabled = 9; 290 optional MetricsEnabledProto metrics_enabled = 9;
286 optional ReleaseChannelProto release_channel = 10; 291 optional ReleaseChannelProto release_channel = 10;
287 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; 292 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11;
288 optional DeviceReportingProto device_reporting = 12; 293 optional DeviceReportingProto device_reporting = 12;
289 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; 294 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13;
290 optional AppPackProto app_pack = 14; 295 optional AppPackProto app_pack = 14;
291 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; 296 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15;
292 optional ScreenSaverProto login_screen_saver = 16; 297 optional ScreenSaverProto login_screen_saver = 16;
293 optional AutoUpdateSettingsProto auto_update_settings = 17; 298 optional AutoUpdateSettingsProto auto_update_settings = 17;
294 optional StartUpUrlsProto start_up_urls = 18; 299 optional StartUpUrlsProto start_up_urls = 18;
295 optional PinnedAppsProto pinned_apps = 19; 300 optional PinnedAppsProto pinned_apps = 19;
296 optional SystemTimezoneProto system_timezone = 20; 301 optional SystemTimezoneProto system_timezone = 20;
297 optional DeviceLocalAccountsProto device_local_accounts = 21; 302 optional DeviceLocalAccountsProto device_local_accounts = 21;
298 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; 303 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22;
299 optional StartUpFlagsProto start_up_flags = 23; 304 optional StartUpFlagsProto start_up_flags = 23;
300 optional UptimeLimitProto uptime_limit = 24; 305 optional UptimeLimitProto uptime_limit = 24;
306 optional AttestationSettingsProto attestation_settings = 25;
301 } 307 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698