| Index: google_apis/drive/dummy_auth_service.h
|
| diff --git a/google_apis/drive/dummy_auth_service.h b/google_apis/drive/dummy_auth_service.h
|
| index 38b6774dadae19d0c6a27f7480be2fbd021196c8..87236e6a16a344c96c900c6cf27b228d99e3b9af 100644
|
| --- a/google_apis/drive/dummy_auth_service.h
|
| +++ b/google_apis/drive/dummy_auth_service.h
|
| @@ -24,14 +24,14 @@ class DummyAuthService : public AuthServiceInterface {
|
| const std::string& refresh_token() const { return refresh_token_; }
|
|
|
| // AuthServiceInterface overrides.
|
| - virtual void AddObserver(AuthServiceObserver* observer) override;
|
| - virtual void RemoveObserver(AuthServiceObserver* observer) override;
|
| - virtual void StartAuthentication(const AuthStatusCallback& callback) override;
|
| - virtual bool HasAccessToken() const override;
|
| - virtual bool HasRefreshToken() const override;
|
| - virtual const std::string& access_token() const override;
|
| - virtual void ClearAccessToken() override;
|
| - virtual void ClearRefreshToken() override;
|
| + void AddObserver(AuthServiceObserver* observer) override;
|
| + void RemoveObserver(AuthServiceObserver* observer) override;
|
| + void StartAuthentication(const AuthStatusCallback& callback) override;
|
| + bool HasAccessToken() const override;
|
| + bool HasRefreshToken() const override;
|
| + const std::string& access_token() const override;
|
| + void ClearAccessToken() override;
|
| + void ClearRefreshToken() override;
|
|
|
| private:
|
| std::string access_token_;
|
|
|