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

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

Issue 9691046: Updated the chrome_device_policy.proto, and AppPack decoding. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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
« no previous file with comments | « chrome/browser/policy/app_pack_updater.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 94
95 message EphemeralUsersEnabledProto { 95 message EphemeralUsersEnabledProto {
96 // Determines whether users should be treated as ephemeral. 96 // Determines whether users should be treated as ephemeral.
97 optional bool ephemeral_users_enabled = 1; 97 optional bool ephemeral_users_enabled = 1;
98 } 98 }
99 99
100 // Details of an extension to install as part of the AppPack. 100 // Details of an extension to install as part of the AppPack.
101 message AppPackEntryProto { 101 message AppPackEntryProto {
102 optional string extension_id = 1; 102 optional string extension_id = 1;
103 optional string update_url = 2; 103 optional string update_url = 2;
104 optional bytes key_checksum = 3; 104 optional bool online_only = 3;
105 } 105 }
106 106
107 message AppPackProto { 107 message AppPackProto {
108 // List of extensions to install as part of the AppPack. 108 // List of extensions to install as part of the AppPack.
109 repeated AppPackEntryProto app_pack = 1; 109 repeated AppPackEntryProto app_pack = 1;
110 } 110 }
111 111
112 message ForcedLogoutTimeoutsProto { 112 message ForcedLogoutTimeoutsProto {
113 // All timeouts are specified in milliseconds. 113 // All timeouts are specified in milliseconds.
114 114
(...skipping 30 matching lines...) Expand all
145 optional AllowNewUsersProto allow_new_users = 8; 145 optional AllowNewUsersProto allow_new_users = 8;
146 optional MetricsEnabledProto metrics_enabled = 9; 146 optional MetricsEnabledProto metrics_enabled = 9;
147 optional ReleaseChannelProto release_channel = 10; 147 optional ReleaseChannelProto release_channel = 10;
148 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; 148 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11;
149 optional DeviceReportingProto device_reporting = 12; 149 optional DeviceReportingProto device_reporting = 12;
150 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; 150 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13;
151 optional AppPackProto app_pack = 14; 151 optional AppPackProto app_pack = 14;
152 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; 152 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15;
153 optional ScreenSaverProto login_screen_saver = 16; 153 optional ScreenSaverProto login_screen_saver = 16;
154 } 154 }
OLDNEW
« no previous file with comments | « chrome/browser/policy/app_pack_updater.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698