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

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

Issue 856563004: Update {virtual,override,final} to follow C++11 style in chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« 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 cb541ee922bf2f8b5b92fb1ea2e6c851fa098b27..8d81e41c7f90c0356b1cf0b87951a589a4d99a1d 100644
--- a/chromeos/login/auth/mock_url_fetchers.h
+++ b/chromeos/login/auth/mock_url_fetchers.h
@@ -30,9 +30,9 @@ class ExpectCanceledFetcher : public net::TestURLFetcher {
const std::string& results,
net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d);
- virtual ~ExpectCanceledFetcher();
+ ~ExpectCanceledFetcher() override;
- virtual void Start() override;
+ void Start() override;
void CompleteFetch();
@@ -48,9 +48,9 @@ class GotCanceledFetcher : public net::TestURLFetcher {
const std::string& results,
net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d);
- virtual ~GotCanceledFetcher();
+ ~GotCanceledFetcher() override;
- virtual void Start() override;
+ void Start() override;
private:
DISALLOW_COPY_AND_ASSIGN(GotCanceledFetcher);
@@ -63,9 +63,9 @@ class SuccessFetcher : public net::TestURLFetcher {
const std::string& results,
net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d);
- virtual ~SuccessFetcher();
+ ~SuccessFetcher() override;
- virtual void Start() override;
+ void Start() override;
private:
DISALLOW_COPY_AND_ASSIGN(SuccessFetcher);
@@ -78,9 +78,9 @@ class FailFetcher : public net::TestURLFetcher {
const std::string& results,
net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d);
- virtual ~FailFetcher();
+ ~FailFetcher() override;
- virtual void Start() override;
+ void Start() override;
private:
DISALLOW_COPY_AND_ASSIGN(FailFetcher);
@@ -93,13 +93,13 @@ class CaptchaFetcher : public net::TestURLFetcher {
const std::string& results,
net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d);
- virtual ~CaptchaFetcher();
+ ~CaptchaFetcher() override;
static std::string GetCaptchaToken();
static std::string GetCaptchaUrl();
static std::string GetUnlockUrl();
- virtual void Start() override;
+ void Start() override;
private:
static const char kCaptchaToken[];
@@ -116,9 +116,9 @@ class HostedFetcher : public net::TestURLFetcher {
const std::string& results,
net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d);
- virtual ~HostedFetcher();
+ ~HostedFetcher() override;
- virtual void Start() override;
+ 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