| Index: chrome/browser/chromeos/login/lock/screen_locker_tester.cc
|
| diff --git a/chrome/browser/chromeos/login/lock/screen_locker_tester.cc b/chrome/browser/chromeos/login/lock/screen_locker_tester.cc
|
| index 1354e130b722c6144a1f10256d97de6da4ee9cb2..8f3e20f5c45bf87be9ff2ec74e74509bd2446d65 100644
|
| --- a/chrome/browser/chromeos/login/lock/screen_locker_tester.cc
|
| +++ b/chrome/browser/chromeos/login/lock/screen_locker_tester.cc
|
| @@ -40,12 +40,12 @@ class LoginAttemptObserver : public chromeos::AuthStatusConsumer {
|
| void WaitForAttempt();
|
|
|
| // Overridden from AuthStatusConsumer:
|
| - virtual void OnAuthFailure(const chromeos::AuthFailure& error) OVERRIDE {
|
| + virtual void OnAuthFailure(const chromeos::AuthFailure& error) override {
|
| LoginAttempted();
|
| }
|
|
|
| virtual void OnAuthSuccess(
|
| - const chromeos::UserContext& credentials) OVERRIDE {
|
| + const chromeos::UserContext& credentials) override {
|
| LoginAttempted();
|
| }
|
|
|
| @@ -94,12 +94,12 @@ namespace test {
|
| class WebUIScreenLockerTester : public ScreenLockerTester {
|
| public:
|
| // ScreenLockerTester overrides:
|
| - virtual void SetPassword(const std::string& password) OVERRIDE;
|
| - virtual std::string GetPassword() OVERRIDE;
|
| - virtual void EnterPassword(const std::string& password) OVERRIDE;
|
| - virtual void EmulateWindowManagerReady() OVERRIDE;
|
| - virtual views::Widget* GetWidget() const OVERRIDE;
|
| - virtual views::Widget* GetChildWidget() const OVERRIDE;
|
| + virtual void SetPassword(const std::string& password) override;
|
| + virtual std::string GetPassword() override;
|
| + virtual void EnterPassword(const std::string& password) override;
|
| + virtual void EmulateWindowManagerReady() override;
|
| + virtual views::Widget* GetWidget() const override;
|
| + virtual views::Widget* GetChildWidget() const override;
|
|
|
| private:
|
| friend class chromeos::ScreenLocker;
|
|
|