| Index: chromeos/dbus/fake_update_engine_client.h
|
| diff --git a/chromeos/dbus/fake_update_engine_client.h b/chromeos/dbus/fake_update_engine_client.h
|
| index b2ddc9487b248edece48b1e75da5198e049fb952..6475f2cf0c05a0ef7e4b364e328c7212f8a59dd0 100644
|
| --- a/chromeos/dbus/fake_update_engine_client.h
|
| +++ b/chromeos/dbus/fake_update_engine_client.h
|
| @@ -22,20 +22,20 @@ class FakeUpdateEngineClient : public UpdateEngineClient {
|
| virtual ~FakeUpdateEngineClient();
|
|
|
| // UpdateEngineClient overrides
|
| - virtual void Init(dbus::Bus* bus) OVERRIDE;
|
| - virtual void AddObserver(Observer* observer) OVERRIDE;
|
| - virtual void RemoveObserver(Observer* observer) OVERRIDE;
|
| - virtual bool HasObserver(Observer* observer) OVERRIDE;
|
| - virtual void RequestUpdateCheck(const UpdateCheckCallback& callback) OVERRIDE;
|
| - virtual void RebootAfterUpdate() OVERRIDE;
|
| - virtual void Rollback() OVERRIDE;
|
| + virtual void Init(dbus::Bus* bus) override;
|
| + virtual void AddObserver(Observer* observer) override;
|
| + virtual void RemoveObserver(Observer* observer) override;
|
| + virtual bool HasObserver(Observer* observer) override;
|
| + virtual void RequestUpdateCheck(const UpdateCheckCallback& callback) override;
|
| + virtual void RebootAfterUpdate() override;
|
| + virtual void Rollback() override;
|
| virtual void CanRollbackCheck(
|
| - const RollbackCheckCallback& callback) OVERRIDE;
|
| - virtual Status GetLastStatus() OVERRIDE;
|
| + const RollbackCheckCallback& callback) override;
|
| + virtual Status GetLastStatus() override;
|
| virtual void SetChannel(const std::string& target_channel,
|
| - bool is_powerwash_allowed) OVERRIDE;
|
| + bool is_powerwash_allowed) override;
|
| virtual void GetChannel(bool get_current_channel,
|
| - const GetChannelCallback& callback) OVERRIDE;
|
| + const GetChannelCallback& callback) override;
|
|
|
| // Pushes UpdateEngineClient::Status in the queue to test changing status.
|
| // GetLastStatus() returns the status set by this method in FIFO order.
|
|
|