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

Unified Diff: ios/public/test/fake_profile_oauth2_token_service_ios_provider.h

Issue 840813009: Enable strict-virtual-specifiers for iOS builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 5 years, 11 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
Index: ios/public/test/fake_profile_oauth2_token_service_ios_provider.h
diff --git a/ios/public/test/fake_profile_oauth2_token_service_ios_provider.h b/ios/public/test/fake_profile_oauth2_token_service_ios_provider.h
index 0fdd493aec069bf1b397059e72c625ce3c030ecb..9eca4323fcfd914874b06a8a2fd184e6f42cb727 100644
--- a/ios/public/test/fake_profile_oauth2_token_service_ios_provider.h
+++ b/ios/public/test/fake_profile_oauth2_token_service_ios_provider.h
@@ -19,20 +19,20 @@ class FakeProfileOAuth2TokenServiceIOSProvider
: public ProfileOAuth2TokenServiceIOSProvider {
public:
FakeProfileOAuth2TokenServiceIOSProvider();
- virtual ~FakeProfileOAuth2TokenServiceIOSProvider();
+ ~FakeProfileOAuth2TokenServiceIOSProvider() override;
// ProfileOAuth2TokenServiceIOSProvider
- virtual void InitializeSharedAuthentication() override;
+ void InitializeSharedAuthentication() override;
- virtual void GetAccessToken(const std::string& account_id,
- const std::string& client_id,
- const std::string& client_secret,
- const std::set<std::string>& scopes,
- const AccessTokenCallback& callback) override;
+ void GetAccessToken(const std::string& account_id,
+ const std::string& client_id,
+ const std::string& client_secret,
+ const std::set<std::string>& scopes,
+ const AccessTokenCallback& callback) override;
- virtual std::vector<std::string> GetAllAccountIds() override;
+ std::vector<std::string> GetAllAccountIds() override;
- virtual AuthenticationErrorCategory GetAuthenticationErrorCategory(
+ AuthenticationErrorCategory GetAuthenticationErrorCategory(
NSError* error) const override;
// Methods to configure this fake provider.
« no previous file with comments | « ios/chrome/browser/suggestions/suggestions_service_factory.h ('k') | ios/public/test/test_chrome_browser_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698