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

Unified Diff: components/signin/core/browser/fake_auth_status_provider.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (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
Index: components/signin/core/browser/fake_auth_status_provider.h
diff --git a/components/signin/core/browser/fake_auth_status_provider.h b/components/signin/core/browser/fake_auth_status_provider.h
index 7254179c22c7e29e20818785173a3d20504fb328..ce2cca921af89036432dc56d74d547b47536d0a0 100644
--- a/components/signin/core/browser/fake_auth_status_provider.h
+++ b/components/signin/core/browser/fake_auth_status_provider.h
@@ -14,7 +14,7 @@ class FakeAuthStatusProvider
: public SigninErrorController::AuthStatusProvider {
public:
explicit FakeAuthStatusProvider(SigninErrorController* error);
- virtual ~FakeAuthStatusProvider();
+ ~FakeAuthStatusProvider() override;
// Sets the auth error that this provider reports to SigninErrorController.
// Also notifies SigninErrorController via AuthStatusChanged().
@@ -27,9 +27,9 @@ class FakeAuthStatusProvider
}
// AuthStatusProvider implementation.
- virtual std::string GetAccountId() const override;
- virtual std::string GetUsername() const override;
- virtual GoogleServiceAuthError GetAuthStatus() const override;
+ std::string GetAccountId() const override;
+ std::string GetUsername() const override;
+ GoogleServiceAuthError GetAuthStatus() const override;
private:
SigninErrorController* error_provider_;

Powered by Google App Engine
This is Rietveld 408576698