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

Unified Diff: google_apis/gaia/fake_identity_provider.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/gaia/account_tracker_unittest.cc ('k') | google_apis/gaia/fake_oauth2_token_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gaia/fake_identity_provider.h
diff --git a/google_apis/gaia/fake_identity_provider.h b/google_apis/gaia/fake_identity_provider.h
index 1ba0f50365b527e13a0eb722aa2cb32820c501d5..21408085f70b2f27e6c5fb4049446ff8f382dd87 100644
--- a/google_apis/gaia/fake_identity_provider.h
+++ b/google_apis/gaia/fake_identity_provider.h
@@ -17,16 +17,16 @@ class OAuth2TokenService;
class FakeIdentityProvider : public IdentityProvider {
public:
explicit FakeIdentityProvider(OAuth2TokenService* token_service);
- virtual ~FakeIdentityProvider();
+ ~FakeIdentityProvider() override;
void LogIn(const std::string& account_id);
void LogOut();
// IdentityProvider:
- virtual std::string GetActiveUsername() override;
- virtual std::string GetActiveAccountId() override;
- virtual OAuth2TokenService* GetTokenService() override;
- virtual bool RequestLogin() override;
+ std::string GetActiveUsername() override;
+ std::string GetActiveAccountId() override;
+ OAuth2TokenService* GetTokenService() override;
+ bool RequestLogin() override;
private:
std::string account_id_;
« no previous file with comments | « google_apis/gaia/account_tracker_unittest.cc ('k') | google_apis/gaia/fake_oauth2_token_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698