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

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

Issue 6727027: Update protobuf definitions for ChromeOS device policy support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 9 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
OLDNEW
(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 }
32
33 message ChromeDeviceSettingsProto {
34 optional DevicePolicyRefreshRateProto policy_refresh_rate = 1;
35 optional UserWhitelistProto user_whitelist = 2;
36 optional GuestModeEnabledProto guest_mode_enabled = 3;
37 optional DeviceProxySettingsProto device_proxy_settings = 4;
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698