diff options
author | dubroy@chromium.org <dubroy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-25 14:03:25 +0000 |
---|---|---|
committer | dubroy@chromium.org <dubroy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-25 14:03:25 +0000 |
commit | 9f521e599e65cfd1792fd3c0f0cd9af176183f1b (patch) | |
tree | 803edc1cfacce8a2b1f3f1686baa95415d74050d /chrome/common | |
parent | 07c6ba51672b3e41203dfac010e91e742d6348e3 (diff) | |
download | chromium_src-9f521e599e65cfd1792fd3c0f0cd9af176183f1b.zip chromium_src-9f521e599e65cfd1792fd3c0f0cd9af176183f1b.tar.gz chromium_src-9f521e599e65cfd1792fd3c0f0cd9af176183f1b.tar.bz2 |
Add policies for specific parts of device status reports.
BUG=chromium-os:24308
TEST=Manual
Review URL: https://chromiumcodereview.appspot.com/9284025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119058 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/pref_names.cc | 8 | ||||
-rw-r--r-- | chrome/common/pref_names.h | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index a868577..b171c53 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -1598,6 +1598,14 @@ const char kCarrierDealPromoShown[] = // auto-enrollment check has been done once and completed. It can be reset to // false if the user opts out of auto enrollment. const char kShouldAutoEnroll[] = "ShouldAutoEnroll"; + +// A boolean pref that indicates whether OS & firmware version info should be +// reported along with device policy requests. +const char kReportDeviceVersionInfo[] = "device_status.report_version_info"; + +// A boolean pref that indicates whether device activity times should be +// recorded and reported along with device policy requests. +const char kReportDeviceActivityTimes[] = "device_status.report_activity_times"; #endif // Whether there is a Flash version installed that supports clearing LSO data. diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index 1d0be21..62eba9a 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -615,6 +615,8 @@ extern const char kSignedSettingsCache[]; extern const char kHardwareKeyboardLayout[]; extern const char kCarrierDealPromoShown[]; extern const char kShouldAutoEnroll[]; +extern const char kReportDeviceVersionInfo[]; +extern const char kReportDeviceActivityTimes[]; #endif extern const char kClearPluginLSODataEnabled[]; |