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

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

Issue 7014036: Split the policy refresh rate preference into user- and device-policy refresh rate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits. Created 9 years, 6 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
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 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
11 message DevicePolicyRefreshRateProto { 11 message DevicePolicyRefreshRateProto {
12 // In milliseconds. 12 // In milliseconds.
13 optional int64 policy_refresh_rate = 1; 13 optional int64 device_policy_refresh_rate = 1;
14 } 14 }
15 15
16 message UserWhitelistProto { 16 message UserWhitelistProto {
17 repeated string user_whitelist = 1; 17 repeated string user_whitelist = 1;
18 } 18 }
19 19
20 message AllowNewUsersProto { 20 message AllowNewUsersProto {
21 // Determines whether we allow arbitrary users to log into the device. 21 // Determines whether we allow arbitrary users to log into the device.
22 // Should default to true. 22 // Should default to true.
23 // This interacts with the UserWhitelistProto as follows: 23 // This interacts with the UserWhitelistProto as follows:
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 optional string proxy_server = 2; 65 optional string proxy_server = 2;
66 optional string proxy_pac_url = 3; 66 optional string proxy_pac_url = 3;
67 optional string proxy_bypass_list = 4; 67 optional string proxy_bypass_list = 4;
68 } 68 }
69 69
70 message CameraEnabledProto { 70 message CameraEnabledProto {
71 optional bool camera_enabled = 1; 71 optional bool camera_enabled = 1;
72 } 72 }
73 73
74 message ChromeDeviceSettingsProto { 74 message ChromeDeviceSettingsProto {
75 optional DevicePolicyRefreshRateProto policy_refresh_rate = 1; 75 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
76 optional UserWhitelistProto user_whitelist = 2; 76 optional UserWhitelistProto user_whitelist = 2;
77 optional GuestModeEnabledProto guest_mode_enabled = 3; 77 optional GuestModeEnabledProto guest_mode_enabled = 3;
78 optional DeviceProxySettingsProto device_proxy_settings = 4; 78 optional DeviceProxySettingsProto device_proxy_settings = 4;
79 optional CameraEnabledProto camera_enabled = 5; 79 optional CameraEnabledProto camera_enabled = 5;
80 optional ShowUserNamesOnSigninProto show_user_names = 6; 80 optional ShowUserNamesOnSigninProto show_user_names = 6;
81 optional DataRoamingEnabledProto data_roaming_enabled = 7; 81 optional DataRoamingEnabledProto data_roaming_enabled = 7;
82 optional AllowNewUsersProto allow_new_users = 8; 82 optional AllowNewUsersProto allow_new_users = 8;
83 } 83 }
OLDNEW
« no previous file with comments | « chrome/browser/policy/profile_policy_connector.cc ('k') | chrome/browser/prefs/browser_prefs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698