| Index: remoting/host/oauth_token_getter.h
|
| diff --git a/remoting/host/oauth_token_getter.h b/remoting/host/oauth_token_getter.h
|
| index a47a3f8267ffccf0be37c6671071ca8e7bcef1e6..ffc135569cda52d855ac50ea757f17e1c94a77b9 100644
|
| --- a/remoting/host/oauth_token_getter.h
|
| +++ b/remoting/host/oauth_token_getter.h
|
| @@ -68,12 +68,12 @@ class OAuthTokenGetter :
|
| // gaia::GaiaOAuthClient::Delegate interface.
|
| virtual void OnGetTokensResponse(const std::string& user_email,
|
| const std::string& access_token,
|
| - int expires_seconds) OVERRIDE;
|
| + int expires_seconds) override;
|
| virtual void OnRefreshTokenResponse(const std::string& access_token,
|
| - int expires_in_seconds) OVERRIDE;
|
| - virtual void OnGetUserEmailResponse(const std::string& user_email) OVERRIDE;
|
| - virtual void OnOAuthError() OVERRIDE;
|
| - virtual void OnNetworkError(int response_code) OVERRIDE;
|
| + int expires_in_seconds) override;
|
| + virtual void OnGetUserEmailResponse(const std::string& user_email) override;
|
| + virtual void OnOAuthError() override;
|
| + virtual void OnNetworkError(int response_code) override;
|
|
|
| private:
|
| void NotifyCallbacks(Status status,
|
|
|