diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 09:11:56 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 16:12:23 +0000 |
commit | f93bb58024cffd2b08e691f43138d789641708cb (patch) | |
tree | 76bf9e4ad2f0694762cf750b586fa0bf3455e6b4 /google_apis/gaia/oauth2_token_service.h | |
parent | 895619a90a778b576cce262d5c6b68c94c255a98 (diff) | |
download | chromium_src-f93bb58024cffd2b08e691f43138d789641708cb.zip chromium_src-f93bb58024cffd2b08e691f43138d789641708cb.tar.gz chromium_src-f93bb58024cffd2b08e691f43138d789641708cb.tar.bz2 |
Standardize usage of virtual/override/final in google_apis/
This patch was automatically generated by applying clang fixit hints
generated by the plugin to the source tree.
BUG=417463
TBR=rogerta@chromium.org
Review URL: https://codereview.chromium.org/649283003
Cr-Commit-Position: refs/heads/master@{#300495}
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; |