diff options
Diffstat (limited to 'google_apis/gaia/oauth2_token_service.h')
-rw-r--r-- | google_apis/gaia/oauth2_token_service.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/google_apis/gaia/oauth2_token_service.h b/google_apis/gaia/oauth2_token_service.h index 1824da3..202d7d2 100644 --- a/google_apis/gaia/oauth2_token_service.h +++ b/google_apis/gaia/oauth2_token_service.h @@ -215,10 +215,10 @@ class OAuth2TokenService : public base::NonThreadSafe { public: // |consumer| is required to outlive this. explicit RequestImpl(const std::string& account_id, Consumer* consumer); - virtual ~RequestImpl(); + ~RequestImpl() override; // Overridden from Request: - virtual std::string GetAccountId() const override; + std::string GetAccountId() const override; std::string GetConsumerId() const; |