diff options
author | stepco@chromium.org <stepco@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-30 03:04:59 +0000 |
---|---|---|
committer | stepco@chromium.org <stepco@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-30 03:04:59 +0000 |
commit | 654bd7ec41bc77f7db1b23ff85467bbdc00c5b77 (patch) | |
tree | 1f5c936551c48ca77333c82567105d1a7a3ec7b6 /chromeos/settings | |
parent | 7cc2bb895566d4af782ce9410e99e4266a29b09e (diff) | |
download | chromium_src-654bd7ec41bc77f7db1b23ff85467bbdc00c5b77.zip chromium_src-654bd7ec41bc77f7db1b23ff85467bbdc00c5b77.tar.gz chromium_src-654bd7ec41bc77f7db1b23ff85467bbdc00c5b77.tar.bz2 |
Report logged in users on enterprise managed devices.
BUG=308664
Review URL: https://codereview.chromium.org/26770002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231716 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/settings')
-rw-r--r-- | chromeos/settings/cros_settings_names.cc | 4 | ||||
-rw-r--r-- | chromeos/settings/cros_settings_names.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/chromeos/settings/cros_settings_names.cc b/chromeos/settings/cros_settings_names.cc index a82a254..fbc30a3 100644 --- a/chromeos/settings/cros_settings_names.cc +++ b/chromeos/settings/cros_settings_names.cc @@ -85,6 +85,10 @@ const char kReportDeviceLocation[] = "cros.device_status.report_location"; const char kReportDeviceNetworkInterfaces[] = "cros.device_status.report_network_interfaces"; +// Determines whether the device reports recently logged in users in device +// status reports to the device management server. +const char kReportDeviceUsers[] = "cros.device_status.report_users"; + // A list of dictionaries, each detailing one extension to install as part of // the AppPack and including the following fields: // "extension-id": ID of the extension to install diff --git a/chromeos/settings/cros_settings_names.h b/chromeos/settings/cros_settings_names.h index b0971dd..ffaf6f4 100644 --- a/chromeos/settings/cros_settings_names.h +++ b/chromeos/settings/cros_settings_names.h @@ -50,6 +50,7 @@ CHROMEOS_EXPORT extern const char kReportDeviceActivityTimes[]; CHROMEOS_EXPORT extern const char kReportDeviceBootMode[]; CHROMEOS_EXPORT extern const char kReportDeviceLocation[]; CHROMEOS_EXPORT extern const char kReportDeviceNetworkInterfaces[]; +CHROMEOS_EXPORT extern const char kReportDeviceUsers[]; CHROMEOS_EXPORT extern const char kAppPack[]; CHROMEOS_EXPORT extern const char kAppPackKeyExtensionId[]; |