| Index: chrome/browser/chromeos/login/wizard_controller.h
|
| diff --git a/chrome/browser/chromeos/login/wizard_controller.h b/chrome/browser/chromeos/login/wizard_controller.h
|
| index 83e9c562b12a7a65b17d5b153da4992025195296..1f929a950a975d1ce6a97940a963b5d12eeabd65 100644
|
| --- a/chrome/browser/chromeos/login/wizard_controller.h
|
| +++ b/chrome/browser/chromeos/login/wizard_controller.h
|
| @@ -8,6 +8,7 @@
|
|
|
| #include <string>
|
|
|
| +#include "base/compiler_specific.h"
|
| #include "base/gtest_prod_util.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/timer.h"
|
| @@ -148,12 +149,12 @@ class WizardController : public ScreenObserver {
|
| void InitiateOOBEUpdate();
|
|
|
| // Overridden from ScreenObserver:
|
| - virtual void OnExit(ExitCodes exit_code);
|
| - virtual void ShowCurrentScreen();
|
| + virtual void OnExit(ExitCodes exit_code) OVERRIDE;
|
| + virtual void ShowCurrentScreen() OVERRIDE;
|
| virtual void OnSetUserNamePassword(const std::string& username,
|
| - const std::string& password);
|
| - virtual void set_usage_statistics_reporting(bool val);
|
| - virtual bool usage_statistics_reporting() const;
|
| + const std::string& password) OVERRIDE;
|
| + virtual void set_usage_statistics_reporting(bool val) OVERRIDE;
|
| + virtual bool usage_statistics_reporting() const OVERRIDE;
|
|
|
| // Switches from one screen to another.
|
| void SetCurrentScreen(WizardScreen* screen);
|
|
|