summaryrefslogtreecommitdiffstats
path: root/chromeos/system
diff options
context:
space:
mode:
authoralemate@chromium.org <alemate@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-01 00:12:34 +0000
committeralemate@chromium.org <alemate@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-01 00:12:34 +0000
commitd19885a56feafa2865d7b4b41c27d88fa68d3a6c (patch)
tree694cc0e153ac03d3aa13b495203a589bc2d18935 /chromeos/system
parent56a2a56c192d607e851a4cdd330addc72b005a3e (diff)
downloadchromium_src-d19885a56feafa2865d7b4b41c27d88fa68d3a6c.zip
chromium_src-d19885a56feafa2865d7b4b41c27d88fa68d3a6c.tar.gz
chromium_src-d19885a56feafa2865d7b4b41c27d88fa68d3a6c.tar.bz2
Add kRlzBrandCodeKey string constant.
BUG=343585 TEST=none NOCHECK=true Review URL: https://codereview.chromium.org/177213004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254281 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/system')
-rw-r--r--chromeos/system/statistics_provider.cc1
-rw-r--r--chromeos/system/statistics_provider.h3
2 files changed, 4 insertions, 0 deletions
diff --git a/chromeos/system/statistics_provider.cc b/chromeos/system/statistics_provider.cc
index 10ad688..9beff02 100644
--- a/chromeos/system/statistics_provider.cc
+++ b/chromeos/system/statistics_provider.cc
@@ -71,6 +71,7 @@ const char kCustomizationIdKey[] = "customization_id";
const char kHardwareClassKey[] = "hardware_class";
const char kOffersCouponCodeKey[] = "ubind_attribute";
const char kOffersGroupCodeKey[] = "gbind_attribute";
+const char kRlzBrandCodeKey[] = "rlz_brand_code";
// OEM specific statistics. Must be prefixed with "oem_".
const char kOemCanExitEnterpriseEnrollmentKey[] = "oem_can_exit_enrollment";
diff --git a/chromeos/system/statistics_provider.h b/chromeos/system/statistics_provider.h
index 071923d..d1dd22c 100644
--- a/chromeos/system/statistics_provider.h
+++ b/chromeos/system/statistics_provider.h
@@ -46,6 +46,9 @@ CHROMEOS_EXPORT extern const char kOffersCouponCodeKey[];
// Offer group key.
CHROMEOS_EXPORT extern const char kOffersGroupCodeKey[];
+// Release Brand Code key.
+CHROMEOS_EXPORT extern const char kRlzBrandCodeKey[];
+
// This interface provides access to Chrome OS statistics.
class CHROMEOS_EXPORT StatisticsProvider {
public: