| Index: chrome/browser/ui/webui/options/chromeos/system_settings_provider.h
|
| diff --git a/chrome/browser/ui/webui/options/chromeos/system_settings_provider.h b/chrome/browser/ui/webui/options/chromeos/system_settings_provider.h
|
| index fe2ae1ecd43c318d180c9eb5715bff0099d12a4d..894b81233cb72c7e06a8bd2e5a317bc932613485 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/system_settings_provider.h
|
| +++ b/chrome/browser/ui/webui/options/chromeos/system_settings_provider.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <vector>
|
|
|
| +#include "base/callback.h"
|
| #include "base/string16.h"
|
| #include "chrome/browser/chromeos/cros_settings_provider.h"
|
| #include "chrome/browser/chromeos/system/timezone_settings.h"
|
| @@ -26,8 +27,9 @@ class SystemSettingsProvider : public CrosSettingsProvider,
|
| virtual ~SystemSettingsProvider();
|
|
|
| // CrosSettingsProvider overrides.
|
| - virtual bool Get(const std::string& path,
|
| - base::Value** out_value) const OVERRIDE;
|
| + virtual const base::Value* Get(const std::string& path) const OVERRIDE;
|
| + virtual bool GetTrusted(const std::string& path,
|
| + const base::Closure& callback) const OVERRIDE;
|
| virtual bool HandlesSetting(const std::string& path) const OVERRIDE;
|
|
|
| // Overridden from TimezoneSettings::Observer:
|
|
|