Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Unified Diff: google_apis/drive/dummy_auth_service.h

Issue 625293003: replace OVERRIDE and FINAL with override and final in google_apis/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another rebase on master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « google_apis/drive/drive_api_requests_unittest.cc ('k') | google_apis/drive/gdata_wapi_requests.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 a69da6b9a5cfa50746aafef64da0913008cb5e56..38b6774dadae19d0c6a27f7480be2fbd021196c8 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;
+ 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;
private:
std::string access_token_;
« no previous file with comments | « google_apis/drive/drive_api_requests_unittest.cc ('k') | google_apis/drive/gdata_wapi_requests.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698