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

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

Issue 666133002: Standardize usage of virtual/override/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/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 8888c65aa2941addcecc77c392d5c5709f1b57f4..89ebe7f556d3f58d0e93955dfea3ed71f5040c93 100644
--- a/components/proximity_auth/cryptauth/cryptauth_api_call_flow_unittest.cc
+++ b/components/proximity_auth/cryptauth/cryptauth_api_call_flow_unittest.cc
@@ -86,13 +86,13 @@ class ProximityAuthCryptAuthApiCallFlowTest
}
// net::TestURLFetcherDelegateForTests overrides.
- virtual void OnRequestStart(int fetcher_id) override {
+ void OnRequestStart(int fetcher_id) override {
url_fetcher_ = url_fetcher_factory_->GetFetcherByID(fetcher_id);
}
- virtual void OnChunkUpload(int fetcher_id) override {}
+ void OnChunkUpload(int fetcher_id) override {}
- virtual void OnRequestEnd(int fetcher_id) override {}
+ void OnRequestEnd(int fetcher_id) override {}
net::TestURLFetcher* url_fetcher_;
scoped_ptr<std::string> result_;
« no previous file with comments | « components/proximity_auth/cryptauth/cryptauth_api_call_flow.h ('k') | components/query_parser/query_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698