OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 syntax = "proto2"; | |
6 | |
7 option optimize_for = LITE_RUNTIME; | |
8 | |
9 package enterprise_management; | |
10 | |
11 message DevicePolicyRefreshRateProto { | |
12 // In milliseconds. | |
13 optional int64 policy_refresh_rate = 1; | |
14 } | |
15 | |
16 message UserWhitelistProto { | |
17 repeated string user_whitelist = 1; | |
18 } | |
19 | |
20 message GuestModeEnabledProto { | |
21 // Determines if guests are allowed to log in to the device. | |
22 optional bool guest_mode_enabled = 1; | |
23 } | |
24 | |
25 message DeviceProxySettingsProto { | |
26 // One of "direct", "auto_detect", "pac_script", "fixed_servers", "system" | |
27 optional string proxy_mode = 1; | |
28 optional string proxy_server = 2; | |
29 optional string proxy_pac_url = 3; | |
30 optional string proxy_bypass_list = 4; | |
31 // future: optional bool mandatory = 5 [default = true]; | |
gfeher
2011/03/24 12:16:56
I think this would also be better as a TODO.
Jakob Kummerow
2011/03/24 16:09:52
Removed (as discussed).
| |
32 } | |
33 | |
34 message ChromeDeviceSettingsProto { | |
35 optional DevicePolicyRefreshRateProto policy_refresh_rate = 1; | |
36 optional UserWhitelistProto user_whitelist = 2; | |
37 optional GuestModeEnabledProto guest_mode_enabled = 3; | |
38 optional DeviceProxySettingsProto device_proxy_settings = 4; | |
39 } | |
OLD | NEW |