Chromium Code Reviews| Index: chrome/browser/chromeos/system/statistics_provider.h |
| diff --git a/chrome/browser/chromeos/system/statistics_provider.h b/chrome/browser/chromeos/system/statistics_provider.h |
| index b193563c6c168d6a4a89b12704b07158a5df1783..07463118c7bf28280d741c60c917cffab44b3b63 100644 |
| --- a/chrome/browser/chromeos/system/statistics_provider.h |
| +++ b/chrome/browser/chromeos/system/statistics_provider.h |
| @@ -10,6 +10,35 @@ |
| namespace chromeos { |
| namespace system { |
| +// Developer switch value. |
| +extern const char kDevSwitchBootMode[]; |
| + |
| +// HWID key. |
| +extern const char kHardwareClass[]; |
| + |
| +// Machine board key. |
| +extern const char kMachineInfoBoard[]; |
| + |
| +// OEM customization directive that specified intended device purpose. |
| +extern const char kOemDeviceRequisitionKey[]; |
| + |
| +// OEM customization flag that enforces enterprise enrollment flow in OOBE. |
| +extern const char kOemIsEnterpriseManagedKey[]; |
| + |
| +// OEM customization flag that permits exiting enterprise enrollment flow in |
| +// OOBE when 'oem_enterprise_managed' flag is set. |
| +extern const char kOemCanExitEnterpriseEnrollmentKey[]; |
| + |
| +// OEM customization flag that specifies if OOBE flow should be enhanced for |
| +// keyboard driven control. |
| +extern const char kOemKeyboardDrivenOobeKey[]; |
| + |
| +// Offer coupon code key. |
| +extern const char kOffersCouponCodeKey[]; |
| + |
| +// Offer group key. |
| +extern const char kOffersGroupCodeKey[]; |
|
xiyuan
2013/06/18 04:59:23
nit: alpha-sort the list?
zel
2013/06/18 17:56:37
Done.
|
| + |
| // This interface provides access to Chrome OS statistics. |
| class StatisticsProvider { |
| public: |