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

Unified Diff: components/proximity_auth/cryptauth/cryptauth_api_call_flow_unittest.cc

Issue 640903002: change newly added OVERRIDE to override 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/proximity_auth/cryptauth/cryptauth_api_call_flow_unittest.cc
diff --git a/components/proximity_auth/cryptauth/cryptauth_api_call_flow_unittest.cc b/components/proximity_auth/cryptauth/cryptauth_api_call_flow_unittest.cc
index b4fdc80cd95a1747ebe9ae557e8d03e2d1e0ed91..21fd9b5c04bedb7f18bda8b162e0b60ee30528b1 100644
--- a/components/proximity_auth/cryptauth/cryptauth_api_call_flow_unittest.cc
+++ b/components/proximity_auth/cryptauth/cryptauth_api_call_flow_unittest.cc
@@ -37,7 +37,7 @@ class ProximityAuthCryptAuthApiCallFlowTest
: url_request_context_getter_(new net::TestURLRequestContextGetter(
new base::TestSimpleTaskRunner())) {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
// The TestURLFetcherFactory will override the global URLFetcherFactory for
// the entire test.
url_fetcher_factory_.reset(new net::TestURLFetcherFactory());
@@ -98,13 +98,13 @@ class ProximityAuthCryptAuthApiCallFlowTest
}
// net::TestURLFetcherDelegateForTests overrides.
- virtual void OnRequestStart(int fetcher_id) OVERRIDE {
+ virtual void OnRequestStart(int fetcher_id) override {
url_fetcher_ = url_fetcher_factory_->GetFetcherByID(fetcher_id);
}
- virtual void OnChunkUpload(int fetcher_id) OVERRIDE {}
+ virtual void OnChunkUpload(int fetcher_id) override {}
- virtual void OnRequestEnd(int fetcher_id) OVERRIDE {}
+ virtual void OnRequestEnd(int fetcher_id) override {}
net::TestURLFetcher* url_fetcher_;
scoped_ptr<std::string> result_;

Powered by Google App Engine
This is Rietveld 408576698