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

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

Issue 7287001: Add a device policy for specifying the release channel. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix indent issue. Created 9 years, 5 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
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 MetricsEnabledProto { 74 message MetricsEnabledProto {
75 optional bool metrics_enabled = 1; 75 optional bool metrics_enabled = 1;
76 } 76 }
77 77
78 message ReleaseChannelProto {
79 // One of "stable", "beta", or "dev"
80 optional string release_channel = 1;
81 }
82
78 message ChromeDeviceSettingsProto { 83 message ChromeDeviceSettingsProto {
79 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; 84 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
80 optional UserWhitelistProto user_whitelist = 2; 85 optional UserWhitelistProto user_whitelist = 2;
81 optional GuestModeEnabledProto guest_mode_enabled = 3; 86 optional GuestModeEnabledProto guest_mode_enabled = 3;
82 optional DeviceProxySettingsProto device_proxy_settings = 4; 87 optional DeviceProxySettingsProto device_proxy_settings = 4;
83 optional CameraEnabledProto camera_enabled = 5; 88 optional CameraEnabledProto camera_enabled = 5;
84 optional ShowUserNamesOnSigninProto show_user_names = 6; 89 optional ShowUserNamesOnSigninProto show_user_names = 6;
85 optional DataRoamingEnabledProto data_roaming_enabled = 7; 90 optional DataRoamingEnabledProto data_roaming_enabled = 7;
86 optional AllowNewUsersProto allow_new_users = 8; 91 optional AllowNewUsersProto allow_new_users = 8;
87 optional MetricsEnabledProto metrics_enabled = 9; 92 optional MetricsEnabledProto metrics_enabled = 9;
93 optional ReleaseChannelProto release_channel = 10;
88 } 94 }
95
gfeher 2011/06/30 12:49:28 Nit: please remove.
Patrick Dubroy 2011/06/30 14:28:39 Done.
OLDNEW
« chrome/browser/policy/device_policy_cache.cc ('K') | « chrome/browser/policy/device_policy_cache.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698