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

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

Issue 676913002: kiosk: Support update url for enterprise. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 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
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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 optional bool use_24hour_clock = 1; 256 optional bool use_24hour_clock = 1;
257 } 257 }
258 258
259 // Parameters for Kiosk App device-local accounts. 259 // Parameters for Kiosk App device-local accounts.
260 message KioskAppInfoProto { 260 message KioskAppInfoProto {
261 // Indicates the Kiosk App for the corresponding device-local account. The 261 // Indicates the Kiosk App for the corresponding device-local account. The
262 // string value should be a valid 32-character Chrome App identifier and 262 // string value should be a valid 32-character Chrome App identifier and
263 // specifies the Kiosk App to download and run. 263 // specifies the Kiosk App to download and run.
264 optional string app_id = 1; 264 optional string app_id = 1;
265 265
266 // Obsolete: Kiosk Apps can only be installed from the Chrome Web Store. 266 // Optional extension update URL to download the Kiosk App package from. If
267 optional string OBSOLETE_update_url = 2 [deprecated = true]; 267 // not specified, the app will be downloaded from the standard Chrome Web
268 // Store update URL.
269 optional string update_url = 2;
268 } 270 }
269 271
270 // Describes a single device-local account. 272 // Describes a single device-local account.
271 message DeviceLocalAccountInfoProto { 273 message DeviceLocalAccountInfoProto {
272 // Deprecated: Account identifier for a public session device-local account. 274 // Deprecated: Account identifier for a public session device-local account.
273 // Old code didn't have the |type| field, so it can't handle new types of 275 // Old code didn't have the |type| field, so it can't handle new types of
274 // device-local accounts gracefully (i.e. ignoring unsupported types). New 276 // device-local accounts gracefully (i.e. ignoring unsupported types). New
275 // code should instead set type to ACCOUNT_TYPE_PUBLIC_SESSION and write the 277 // code should instead set type to ACCOUNT_TYPE_PUBLIC_SESSION and write the
276 // identifier to the |account_id| field below. If the |type| field is present, 278 // identifier to the |account_id| field below. If the |type| field is present,
277 // |deprecated_public_session_id| will be ignored. 279 // |deprecated_public_session_id| will be ignored.
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 optional VariationsParameterProto variations_parameter = 25; 611 optional VariationsParameterProto variations_parameter = 25;
610 optional AttestationSettingsProto attestation_settings = 26; 612 optional AttestationSettingsProto attestation_settings = 26;
611 optional AccessibilitySettingsProto accessibility_settings = 27; 613 optional AccessibilitySettingsProto accessibility_settings = 27;
612 optional SupervisedUsersSettingsProto supervised_users_settings = 28; 614 optional SupervisedUsersSettingsProto supervised_users_settings = 28;
613 optional LoginScreenPowerManagementProto login_screen_power_management = 29; 615 optional LoginScreenPowerManagementProto login_screen_power_management = 29;
614 optional SystemUse24HourClockProto use_24hour_clock = 30; 616 optional SystemUse24HourClockProto use_24hour_clock = 30;
615 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; 617 optional AutoCleanupSettigsProto auto_clean_up_settings = 31;
616 optional SystemSettingsProto system_settings = 32; 618 optional SystemSettingsProto system_settings = 32;
617 optional SAMLSettingsProto saml_settings = 33; 619 optional SAMLSettingsProto saml_settings = 33;
618 } 620 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698