| Index: chrome/browser/chromeos/login/signed_settings.h
|
| diff --git a/chrome/browser/chromeos/login/signed_settings.h b/chrome/browser/chromeos/login/signed_settings.h
|
| index 43e6f05f1bb79dabd45b354f94171756d768472b..4e6b79f5538093dd625175d9cd365b82f729e165 100644
|
| --- a/chrome/browser/chromeos/login/signed_settings.h
|
| +++ b/chrome/browser/chromeos/login/signed_settings.h
|
| @@ -9,6 +9,7 @@
|
| #include <string>
|
| #include <vector>
|
|
|
| +#include "base/compiler_specific.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "chrome/browser/chromeos/login/owner_manager.h"
|
|
|
| @@ -115,8 +116,9 @@ class SignedSettings : public base::RefCountedThreadSafe<SignedSettings>,
|
| explicit Relay(SignedSettings* s);
|
| virtual ~Relay();
|
| // Implementation of SignedSettings::Delegate
|
| - virtual void OnSettingsOpCompleted(SignedSettings::ReturnCode code,
|
| - const em::PolicyFetchResponse& value);
|
| + virtual void OnSettingsOpCompleted(
|
| + SignedSettings::ReturnCode code,
|
| + const em::PolicyFetchResponse& value) OVERRIDE;
|
| private:
|
| SignedSettings* settings_;
|
| DISALLOW_COPY_AND_ASSIGN(Relay);
|
|
|