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

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

Issue 9284025: Add policies for specific parts of device status reports. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove illegal XML chars from policy description. Created 8 years, 11 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
« no previous file with comments | « chrome/browser/policy/device_policy_cache.cc ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 message ReleaseChannelProto { 78 message ReleaseChannelProto {
79 // One of "stable-channel", "beta-channel", or "dev-channel" 79 // One of "stable-channel", "beta-channel", or "dev-channel"
80 optional string release_channel = 1; 80 optional string release_channel = 1;
81 } 81 }
82 82
83 message DeviceOpenNetworkConfigurationProto { 83 message DeviceOpenNetworkConfigurationProto {
84 // The network configuration blob. This is a JSON string as specified by ONC. 84 // The network configuration blob. This is a JSON string as specified by ONC.
85 optional string open_network_configuration = 1; 85 optional string open_network_configuration = 1;
86 } 86 }
87 87
88 // Policies to turn on portions of the device status reports.
89 message DeviceReportingProto {
90 optional bool report_version_info = 1;
91 optional bool report_activity_times = 2;
92 }
93
88 message ChromeDeviceSettingsProto { 94 message ChromeDeviceSettingsProto {
89 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; 95 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
90 optional UserWhitelistProto user_whitelist = 2; 96 optional UserWhitelistProto user_whitelist = 2;
91 optional GuestModeEnabledProto guest_mode_enabled = 3; 97 optional GuestModeEnabledProto guest_mode_enabled = 3;
92 optional DeviceProxySettingsProto device_proxy_settings = 4; 98 optional DeviceProxySettingsProto device_proxy_settings = 4;
93 optional CameraEnabledProto camera_enabled = 5; 99 optional CameraEnabledProto camera_enabled = 5;
94 optional ShowUserNamesOnSigninProto show_user_names = 6; 100 optional ShowUserNamesOnSigninProto show_user_names = 6;
95 optional DataRoamingEnabledProto data_roaming_enabled = 7; 101 optional DataRoamingEnabledProto data_roaming_enabled = 7;
96 optional AllowNewUsersProto allow_new_users = 8; 102 optional AllowNewUsersProto allow_new_users = 8;
97 optional MetricsEnabledProto metrics_enabled = 9; 103 optional MetricsEnabledProto metrics_enabled = 9;
98 optional ReleaseChannelProto release_channel = 10; 104 optional ReleaseChannelProto release_channel = 10;
99 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; 105 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11;
106 optional DeviceReportingProto device_reporting = 12;
100 } 107 }
OLDNEW
« no previous file with comments | « chrome/browser/policy/device_policy_cache.cc ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698