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

Unified Diff: chromeos/login/auth/mock_url_fetchers.h

Issue 628883002: replace OVERRIDE and FINAL with override and final in chromeos/ (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 | « chromeos/login/auth/mock_authenticator.h ('k') | chromeos/login/auth/online_attempt.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/login/auth/mock_url_fetchers.h
diff --git a/chromeos/login/auth/mock_url_fetchers.h b/chromeos/login/auth/mock_url_fetchers.h
index 703c4667b82bd609efb3da0301e01d312c75f8f0..cb541ee922bf2f8b5b92fb1ea2e6c851fa098b27 100644
--- a/chromeos/login/auth/mock_url_fetchers.h
+++ b/chromeos/login/auth/mock_url_fetchers.h
@@ -32,7 +32,7 @@ class ExpectCanceledFetcher : public net::TestURLFetcher {
net::URLFetcherDelegate* d);
virtual ~ExpectCanceledFetcher();
- virtual void Start() OVERRIDE;
+ virtual void Start() override;
void CompleteFetch();
@@ -50,7 +50,7 @@ class GotCanceledFetcher : public net::TestURLFetcher {
net::URLFetcherDelegate* d);
virtual ~GotCanceledFetcher();
- virtual void Start() OVERRIDE;
+ virtual void Start() override;
private:
DISALLOW_COPY_AND_ASSIGN(GotCanceledFetcher);
@@ -65,7 +65,7 @@ class SuccessFetcher : public net::TestURLFetcher {
net::URLFetcherDelegate* d);
virtual ~SuccessFetcher();
- virtual void Start() OVERRIDE;
+ virtual void Start() override;
private:
DISALLOW_COPY_AND_ASSIGN(SuccessFetcher);
@@ -80,7 +80,7 @@ class FailFetcher : public net::TestURLFetcher {
net::URLFetcherDelegate* d);
virtual ~FailFetcher();
- virtual void Start() OVERRIDE;
+ virtual void Start() override;
private:
DISALLOW_COPY_AND_ASSIGN(FailFetcher);
@@ -99,7 +99,7 @@ class CaptchaFetcher : public net::TestURLFetcher {
static std::string GetCaptchaUrl();
static std::string GetUnlockUrl();
- virtual void Start() OVERRIDE;
+ virtual void Start() override;
private:
static const char kCaptchaToken[];
@@ -118,7 +118,7 @@ class HostedFetcher : public net::TestURLFetcher {
net::URLFetcherDelegate* d);
virtual ~HostedFetcher();
- virtual void Start() OVERRIDE;
+ virtual void Start() override;
private:
DISALLOW_COPY_AND_ASSIGN(HostedFetcher);
« no previous file with comments | « chromeos/login/auth/mock_authenticator.h ('k') | chromeos/login/auth/online_attempt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698