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

Unified Diff: google_apis/drive/dummy_auth_service.h

Issue 649283003: Standardize usage of virtual/override/final in google_apis/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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.h ('k') | google_apis/drive/gdata_wapi_parser.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 38b6774dadae19d0c6a27f7480be2fbd021196c8..87236e6a16a344c96c900c6cf27b228d99e3b9af 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;
+ void AddObserver(AuthServiceObserver* observer) override;
+ void RemoveObserver(AuthServiceObserver* observer) override;
+ void StartAuthentication(const AuthStatusCallback& callback) override;
+ bool HasAccessToken() const override;
+ bool HasRefreshToken() const override;
+ const std::string& access_token() const override;
+ void ClearAccessToken() override;
+ void ClearRefreshToken() override;
private:
std::string access_token_;
« no previous file with comments | « google_apis/drive/drive_api_requests.h ('k') | google_apis/drive/gdata_wapi_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698