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

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

Issue 14329002: Chrome OS device policy for Variations Restrict Parameter. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: proto name change to avoid conflict 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 VariationsParameterProto {
277 // The string for the restrict parameter to be appended to the Variations URL
278 // when pinging the Variations server.
279 optional string parameter = 1;
280 }
281
276 message ChromeDeviceSettingsProto { 282 message ChromeDeviceSettingsProto {
277 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; 283 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
278 optional UserWhitelistProto user_whitelist = 2; 284 optional UserWhitelistProto user_whitelist = 2;
279 optional GuestModeEnabledProto guest_mode_enabled = 3; 285 optional GuestModeEnabledProto guest_mode_enabled = 3;
280 optional DeviceProxySettingsProto device_proxy_settings = 4; 286 optional DeviceProxySettingsProto device_proxy_settings = 4;
281 optional CameraEnabledProto camera_enabled = 5; 287 optional CameraEnabledProto camera_enabled = 5;
282 optional ShowUserNamesOnSigninProto show_user_names = 6; 288 optional ShowUserNamesOnSigninProto show_user_names = 6;
283 optional DataRoamingEnabledProto data_roaming_enabled = 7; 289 optional DataRoamingEnabledProto data_roaming_enabled = 7;
284 optional AllowNewUsersProto allow_new_users = 8; 290 optional AllowNewUsersProto allow_new_users = 8;
285 optional MetricsEnabledProto metrics_enabled = 9; 291 optional MetricsEnabledProto metrics_enabled = 9;
286 optional ReleaseChannelProto release_channel = 10; 292 optional ReleaseChannelProto release_channel = 10;
287 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; 293 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11;
288 optional DeviceReportingProto device_reporting = 12; 294 optional DeviceReportingProto device_reporting = 12;
289 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; 295 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13;
290 optional AppPackProto app_pack = 14; 296 optional AppPackProto app_pack = 14;
291 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; 297 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15;
292 optional ScreenSaverProto login_screen_saver = 16; 298 optional ScreenSaverProto login_screen_saver = 16;
293 optional AutoUpdateSettingsProto auto_update_settings = 17; 299 optional AutoUpdateSettingsProto auto_update_settings = 17;
294 optional StartUpUrlsProto start_up_urls = 18; 300 optional StartUpUrlsProto start_up_urls = 18;
295 optional PinnedAppsProto pinned_apps = 19; 301 optional PinnedAppsProto pinned_apps = 19;
296 optional SystemTimezoneProto system_timezone = 20; 302 optional SystemTimezoneProto system_timezone = 20;
297 optional DeviceLocalAccountsProto device_local_accounts = 21; 303 optional DeviceLocalAccountsProto device_local_accounts = 21;
298 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; 304 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22;
299 optional StartUpFlagsProto start_up_flags = 23; 305 optional StartUpFlagsProto start_up_flags = 23;
300 optional UptimeLimitProto uptime_limit = 24; 306 optional UptimeLimitProto uptime_limit = 24;
307 optional VariationsParameterProto variations_parameter = 25;
301 } 308 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698