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

Side by Side Diff: chrome/browser/chromeos/cros_settings_names.cc

Issue 9289017: Apply individual policies for the various parts of device status reports. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Julian's comments. 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
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 #include "chrome/browser/chromeos/cros_settings_names.h" 5 #include "chrome/browser/chromeos/cros_settings_names.h"
6 6
7 namespace chromeos { 7 namespace chromeos {
8 8
9 const char kCrosSettingsPrefix[] = "cros."; 9 const char kCrosSettingsPrefix[] = "cros.";
10 10
(...skipping 11 matching lines...) Expand all
22 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; 22 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled";
23 23
24 const char kSystemTimezone[] = "cros.system.timezone"; 24 const char kSystemTimezone[] = "cros.system.timezone";
25 25
26 const char kDeviceOwner[] = "cros.device.owner"; 26 const char kDeviceOwner[] = "cros.device.owner";
27 27
28 const char kStatsReportingPref[] = "cros.metrics.reportingEnabled"; 28 const char kStatsReportingPref[] = "cros.metrics.reportingEnabled";
29 29
30 const char kReleaseChannel[] = "cros.system.releaseChannel"; 30 const char kReleaseChannel[] = "cros.system.releaseChannel";
31 31
32 // A boolean pref that indicates whether OS & firmware version info should be
33 // reported along with device policy requests.
34 const char kReportDeviceVersionInfo[] =
35 "cros.device_status.report_version_info";
36
37 // A boolean pref that indicates whether device activity times should be
38 // recorded and reported along with device policy requests.
39 const char kReportDeviceActivityTimes[] =
40 "cros.device_status.report_activity_times";
41
42 // A boolean pref that indicates whether device the state of the dev switch
43 // at boot mode should be reported along with device policy requests.
44 const char kReportDeviceBootMode[] = "cros.device_status.report_boot_mode";
45
32 } // namespace chromeos 46 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/cros_settings_names.h ('k') | chrome/browser/chromeos/cros_settings_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698