Chromium Code Reviews| 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 |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..bdf32bb021c2a94a308cd8ccfbc83c711c3c07c3 |
| --- /dev/null |
| +++ b/chrome/browser/policy/proto/chrome_device_policy.proto |
| @@ -0,0 +1,39 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +syntax = "proto2"; |
| + |
| +option optimize_for = LITE_RUNTIME; |
| + |
| +package enterprise_management; |
| + |
| +message DevicePolicyRefreshRateProto { |
| + // In milliseconds. |
| + optional int64 policy_refresh_rate = 1; |
| +} |
| + |
| +message UserWhitelistProto { |
| + repeated string user_whitelist = 1; |
| +} |
| + |
| +message GuestModeEnabledProto { |
| + // Determines if guests are allowed to log in to the device. |
| + optional bool guest_mode_enabled = 1; |
| +} |
| + |
| +message DeviceProxySettingsProto { |
| + // One of "direct", "auto_detect", "pac_script", "fixed_servers", "system" |
| + optional string proxy_mode = 1; |
| + optional string proxy_server = 2; |
| + optional string proxy_pac_url = 3; |
| + optional string proxy_bypass_list = 4; |
| + // 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).
|
| +} |
| + |
| +message ChromeDeviceSettingsProto { |
| + optional DevicePolicyRefreshRateProto policy_refresh_rate = 1; |
| + optional UserWhitelistProto user_whitelist = 2; |
| + optional GuestModeEnabledProto guest_mode_enabled = 3; |
| + optional DeviceProxySettingsProto device_proxy_settings = 4; |
| +} |