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

Unified Diff: chrome/browser/policy/proto/chrome_device_policy.proto

Issue 9355044: Added KioskModeAppPack proto. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/policy/app_pack_updater.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/policy/proto/chrome_device_policy.proto
diff --git a/chrome/browser/policy/proto/chrome_device_policy.proto b/chrome/browser/policy/proto/chrome_device_policy.proto
index 07dd07ead8b81d21c56fefef5100ac077cdc4d9c..5b5f0af0fec8ab02b13a4ef1d276a5559c53147b 100644
--- a/chrome/browser/policy/proto/chrome_device_policy.proto
+++ b/chrome/browser/policy/proto/chrome_device_policy.proto
@@ -97,6 +97,18 @@ message EphemeralUsersEnabledProto {
optional bool ephemeral_users_enabled = 1;
}
+// Details of an extension to install as part of the AppPack.
+message AppPackEntryProto {
+ optional string extension_id = 1;
+ optional string update_url = 2;
+ optional bytes key_checksum = 3;
+}
+
+message AppPackProto {
+ // List of extensions to install as part of the AppPack.
+ repeated AppPackEntryProto app_pack = 1;
+}
+
message ChromeDeviceSettingsProto {
optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
optional UserWhitelistProto user_whitelist = 2;
@@ -111,4 +123,5 @@ message ChromeDeviceSettingsProto {
optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11;
optional DeviceReportingProto device_reporting = 12;
optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13;
+ optional AppPackProto app_pack = 14;
}
« no previous file with comments | « chrome/browser/policy/app_pack_updater.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698