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

Unified Diff: chrome/browser/signin/chrome_signin_client.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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: chrome/browser/signin/chrome_signin_client.h
diff --git a/chrome/browser/signin/chrome_signin_client.h b/chrome/browser/signin/chrome_signin_client.h
index 4712b3ccb94dae747b91a780ccee46ab7b264b83..9c060262a7b08fee5a7a5a6a6a891456ddc3d8e1 100644
--- a/chrome/browser/signin/chrome_signin_client.h
+++ b/chrome/browser/signin/chrome_signin_client.h
@@ -34,40 +34,40 @@ class ChromeSigninClient : public SigninClient,
// N.B. This is the id returned by RenderProcessHost::GetID().
// TODO(guohui): Eliminate these APIs once the web-based signin flow is
// replaced by a native flow. crbug.com/347247
- 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 void SetSigninProcess(int host_id) override;
+ virtual void ClearSigninProcess() override;
+ virtual bool IsSigninProcess(int host_id) const override;
+ virtual bool HasSigninProcess() const override;
// content::RenderProcessHostObserver implementation.
virtual void RenderProcessHostDestroyed(content::RenderProcessHost* host)
- OVERRIDE;
+ override;
// SigninClient implementation.
- virtual PrefService* GetPrefs() OVERRIDE;
- virtual scoped_refptr<TokenWebData> GetDatabase() OVERRIDE;
- virtual bool CanRevokeCredentials() OVERRIDE;
- virtual std::string GetSigninScopedDeviceId() OVERRIDE;
- virtual void ClearSigninScopedDeviceId() OVERRIDE;
- virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE;
- virtual bool ShouldMergeSigninCredentialsIntoCookieJar() OVERRIDE;
- virtual bool IsFirstRun() const OVERRIDE;
- virtual base::Time GetInstallDate() OVERRIDE;
+ virtual PrefService* GetPrefs() override;
+ virtual scoped_refptr<TokenWebData> GetDatabase() override;
+ virtual bool CanRevokeCredentials() override;
+ virtual std::string GetSigninScopedDeviceId() override;
+ virtual void ClearSigninScopedDeviceId() override;
+ virtual net::URLRequestContextGetter* GetURLRequestContext() override;
+ virtual bool ShouldMergeSigninCredentialsIntoCookieJar() override;
+ virtual bool IsFirstRun() const override;
+ virtual base::Time GetInstallDate() override;
// Returns a string describing the chrome version environment. Version format:
// <Build Info> <OS> <Version number> (<Last change>)<channel or "-devel">
// If version information is unavailable, returns "invalid."
- virtual std::string GetProductVersion() OVERRIDE;
+ virtual std::string GetProductVersion() override;
virtual scoped_ptr<CookieChangedCallbackList::Subscription>
- AddCookieChangedCallback(const CookieChangedCallback& callback) OVERRIDE;
+ AddCookieChangedCallback(const CookieChangedCallback& callback) override;
virtual void GoogleSigninSucceeded(const std::string& account_id,
const std::string& username,
- const std::string& password) OVERRIDE;
+ const std::string& password) override;
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
private:
void RegisterForCookieChangedNotification();
« no previous file with comments | « chrome/browser/signin/android_profile_oauth2_token_service.cc ('k') | chrome/browser/signin/chrome_signin_client_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698