summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/customization_document.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/chromeos/customization_document.h')
-rw-r--r--chrome/browser/chromeos/customization_document.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/chrome/browser/chromeos/customization_document.h b/chrome/browser/chromeos/customization_document.h
index ea12c89b..0da9347 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);