| Index: chrome/browser/chromeos/customization_document.h
|
| diff --git a/chrome/browser/chromeos/customization_document.h b/chrome/browser/chromeos/customization_document.h
|
| index ea12c89bee3b4d495d32dfca218a6337d749f93c..0da934711db4d623496671c7e5b3020bc2dc0744 100644
|
| --- a/chrome/browser/chromeos/customization_document.h
|
| +++ b/chrome/browser/chromeos/customization_document.h
|
| @@ -28,7 +28,9 @@ namespace base {
|
|
|
| namespace chromeos {
|
|
|
| -class SystemAccess;
|
| +namespace system {
|
| +class StatisticsProvider;
|
| +} // system
|
|
|
| // Base class for OEM customization document classes.
|
| class CustomizationDocument {
|
| @@ -80,12 +82,12 @@ class StartupCustomizationDocument : public CustomizationDocument {
|
| StartupCustomizationDocument();
|
|
|
| // C-tor for test construction.
|
| - StartupCustomizationDocument(SystemAccess* system_access,
|
| + StartupCustomizationDocument(system::StatisticsProvider* provider,
|
| const std::string& manifest);
|
|
|
| virtual ~StartupCustomizationDocument();
|
|
|
| - void Init(SystemAccess* system_access);
|
| + void Init(system::StatisticsProvider* provider);
|
|
|
| // If |attr| exists in machine stat, assign it to |value|.
|
| void InitFromMachineStatistic(const char* attr, std::string* value);
|
|
|