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

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

Issue 12147004: Disable/enable echo for enterprise device. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add the missing SendResponse call to the async extension method. Created 7 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
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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 // the local part may contain any characters other than '@'. 230 // the local part may contain any characters other than '@'.
231 optional string id = 1; 231 optional string id = 1;
232 } 232 }
233 233
234 message DeviceLocalAccountsProto { 234 message DeviceLocalAccountsProto {
235 // The list of device-local accounts (i.e. accounts without an associated 235 // The list of device-local accounts (i.e. accounts without an associated
236 // cloud-backed profile) that are available on the device. 236 // cloud-backed profile) that are available on the device.
237 repeated DeviceLocalAccountInfoProto account = 1; 237 repeated DeviceLocalAccountInfoProto account = 1;
238 } 238 }
239 239
240 message AllowRedeemChromeOsRegistrationOffersProto {
241 // Chrome OS Registration service provides way for chromeos device users
242 // to redeem electronic offers provided by service provider.
243 // This value determines if users are allowed to redeem offers through
244 // Chrome OS Registration service.
245 optional bool allow_redeem_offers = 1 [default = true];
246 }
247
240 message ChromeDeviceSettingsProto { 248 message ChromeDeviceSettingsProto {
241 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; 249 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
242 optional UserWhitelistProto user_whitelist = 2; 250 optional UserWhitelistProto user_whitelist = 2;
243 optional GuestModeEnabledProto guest_mode_enabled = 3; 251 optional GuestModeEnabledProto guest_mode_enabled = 3;
244 optional DeviceProxySettingsProto device_proxy_settings = 4; 252 optional DeviceProxySettingsProto device_proxy_settings = 4;
245 optional CameraEnabledProto camera_enabled = 5; 253 optional CameraEnabledProto camera_enabled = 5;
246 optional ShowUserNamesOnSigninProto show_user_names = 6; 254 optional ShowUserNamesOnSigninProto show_user_names = 6;
247 optional DataRoamingEnabledProto data_roaming_enabled = 7; 255 optional DataRoamingEnabledProto data_roaming_enabled = 7;
248 optional AllowNewUsersProto allow_new_users = 8; 256 optional AllowNewUsersProto allow_new_users = 8;
249 optional MetricsEnabledProto metrics_enabled = 9; 257 optional MetricsEnabledProto metrics_enabled = 9;
250 optional ReleaseChannelProto release_channel = 10; 258 optional ReleaseChannelProto release_channel = 10;
251 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; 259 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11;
252 optional DeviceReportingProto device_reporting = 12; 260 optional DeviceReportingProto device_reporting = 12;
253 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; 261 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13;
254 optional AppPackProto app_pack = 14; 262 optional AppPackProto app_pack = 14;
255 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; 263 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15;
256 optional ScreenSaverProto login_screen_saver = 16; 264 optional ScreenSaverProto login_screen_saver = 16;
257 optional AutoUpdateSettingsProto auto_update_settings = 17; 265 optional AutoUpdateSettingsProto auto_update_settings = 17;
258 optional StartUpUrlsProto start_up_urls = 18; 266 optional StartUpUrlsProto start_up_urls = 18;
259 optional PinnedAppsProto pinned_apps = 19; 267 optional PinnedAppsProto pinned_apps = 19;
260 optional SystemTimezoneProto system_timezone = 20; 268 optional SystemTimezoneProto system_timezone = 20;
261 optional DeviceLocalAccountsProto device_local_accounts = 21; 269 optional DeviceLocalAccountsProto device_local_accounts = 21;
270 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22;
262 } 271 }
OLDNEW
« no previous file with comments | « chrome/browser/policy/device_policy_decoder_chromeos.cc ('k') | chrome/common/extensions/api/echo_private.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698