| Index: sync/internal_api/attachments/attachment_uploader_impl_unittest.cc
|
| diff --git a/sync/internal_api/attachments/attachment_uploader_impl_unittest.cc b/sync/internal_api/attachments/attachment_uploader_impl_unittest.cc
|
| index b6aa9e04064e2e202b0ad9efedf4e6f74336bbc6..1213b9faaa47df0a15b868217c6c1d2134f3f286 100644
|
| --- a/sync/internal_api/attachments/attachment_uploader_impl_unittest.cc
|
| +++ b/sync/internal_api/attachments/attachment_uploader_impl_unittest.cc
|
| @@ -58,7 +58,7 @@ class RequestHandler;
|
| class MockOAuth2TokenService : public FakeOAuth2TokenService {
|
| public:
|
| MockOAuth2TokenService();
|
| - virtual ~MockOAuth2TokenService();
|
| + ~MockOAuth2TokenService() override;
|
|
|
| void SetResponse(const GoogleServiceAuthError& error,
|
| const std::string& access_token,
|
| @@ -71,17 +71,17 @@ class MockOAuth2TokenService : public FakeOAuth2TokenService {
|
| }
|
|
|
| protected:
|
| - virtual void FetchOAuth2Token(RequestImpl* request,
|
| - const std::string& account_id,
|
| - net::URLRequestContextGetter* getter,
|
| - const std::string& client_id,
|
| - const std::string& client_secret,
|
| - const ScopeSet& scopes) override;
|
| -
|
| - virtual void InvalidateOAuth2Token(const std::string& account_id,
|
| - const std::string& client_id,
|
| - const ScopeSet& scopes,
|
| - const std::string& access_token) override;
|
| + void FetchOAuth2Token(RequestImpl* request,
|
| + const std::string& account_id,
|
| + net::URLRequestContextGetter* getter,
|
| + const std::string& client_id,
|
| + const std::string& client_secret,
|
| + const ScopeSet& scopes) override;
|
| +
|
| + void InvalidateOAuth2Token(const std::string& account_id,
|
| + const std::string& client_id,
|
| + const ScopeSet& scopes,
|
| + const std::string& access_token) override;
|
|
|
| private:
|
| GoogleServiceAuthError response_error_;
|
| @@ -141,12 +141,12 @@ class TokenServiceProvider
|
| TokenServiceProvider(OAuth2TokenService* token_service);
|
|
|
| // OAuth2TokenService::TokenServiceProvider implementation.
|
| - virtual scoped_refptr<base::SingleThreadTaskRunner>
|
| - GetTokenServiceTaskRunner() override;
|
| - virtual OAuth2TokenService* GetTokenService() override;
|
| + scoped_refptr<base::SingleThreadTaskRunner> GetTokenServiceTaskRunner()
|
| + override;
|
| + OAuth2TokenService* GetTokenService() override;
|
|
|
| private:
|
| - virtual ~TokenServiceProvider();
|
| + ~TokenServiceProvider() override;
|
|
|
| scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
|
| OAuth2TokenService* token_service_;
|
|
|