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

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

Issue 623133002: replace OVERRIDE and FINAL with override and 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/test_signin_client.h
diff --git a/components/signin/core/browser/test_signin_client.h b/components/signin/core/browser/test_signin_client.h
index 94240a067647fb8a58107aedf9359635cefa06f5..5e739367674448851b4ce7f24af8b9d4b603834e 100644
--- a/components/signin/core/browser/test_signin_client.h
+++ b/components/signin/core/browser/test_signin_client.h
@@ -33,53 +33,53 @@ class TestSigninClient : public SigninClient {
// Returns NULL.
// NOTE: This should be changed to return a properly-initalized PrefService
// once there is a unit test that requires it.
- virtual PrefService* GetPrefs() OVERRIDE;
+ virtual PrefService* GetPrefs() override;
// Returns a pointer to a loaded database.
- virtual scoped_refptr<TokenWebData> GetDatabase() OVERRIDE;
+ virtual scoped_refptr<TokenWebData> GetDatabase() override;
// Returns true.
- virtual bool CanRevokeCredentials() OVERRIDE;
+ virtual bool CanRevokeCredentials() override;
// Returns empty string.
- virtual std::string GetSigninScopedDeviceId() OVERRIDE;
+ virtual std::string GetSigninScopedDeviceId() override;
// Does nothing.
- virtual void ClearSigninScopedDeviceId() OVERRIDE;
+ virtual void ClearSigninScopedDeviceId() override;
// Returns the empty string.
- virtual std::string GetProductVersion() OVERRIDE;
+ virtual std::string GetProductVersion() override;
// Returns a TestURLRequestContextGetter or an manually provided
// URLRequestContextGetter.
- virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE;
+ virtual net::URLRequestContextGetter* GetURLRequestContext() override;
// For testing purposes, can override the TestURLRequestContextGetter created
// in the default constructor.
void SetURLRequestContext(net::URLRequestContextGetter* request_context);
#if defined(OS_IOS)
- virtual ios::ProfileOAuth2TokenServiceIOSProvider* GetIOSProvider() OVERRIDE;
+ virtual ios::ProfileOAuth2TokenServiceIOSProvider* GetIOSProvider() override;
#endif
// Returns true.
- virtual bool ShouldMergeSigninCredentialsIntoCookieJar() OVERRIDE;
+ virtual bool ShouldMergeSigninCredentialsIntoCookieJar() override;
// Does nothing.
virtual scoped_ptr<CookieChangedCallbackList::Subscription>
- AddCookieChangedCallback(const CookieChangedCallback& callback) OVERRIDE;
+ AddCookieChangedCallback(const CookieChangedCallback& callback) override;
#if defined(OS_IOS)
ios::FakeProfileOAuth2TokenServiceIOSProvider* GetIOSProviderAsFake();
#endif
// SigninClient overrides:
- virtual void SetSigninProcess(int host_id) OVERRIDE;
- virtual void ClearSigninProcess() OVERRIDE;
- virtual bool IsSigninProcess(int host_id) const OVERRIDE;
- virtual bool HasSigninProcess() const OVERRIDE;
- virtual bool IsFirstRun() const OVERRIDE;
- virtual base::Time GetInstallDate() OVERRIDE;
+ virtual void SetSigninProcess(int host_id) override;
+ virtual void ClearSigninProcess() override;
+ virtual bool IsSigninProcess(int host_id) const override;
+ virtual bool HasSigninProcess() const override;
+ virtual bool IsFirstRun() const override;
+ virtual base::Time GetInstallDate() override;
private:
// Loads the token database.
« no previous file with comments | « components/signin/core/browser/signin_tracker.h ('k') | components/signin/core/browser/webdata/token_service_table.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698