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

Unified Diff: components/precache/core/precache_fetcher.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/precache/core/precache_fetcher.cc
diff --git a/components/precache/core/precache_fetcher.cc b/components/precache/core/precache_fetcher.cc
index 650ca53b68856700859d579699e91d2b81c59929..70abac7b6cf1c388e36d63ecca827fc16a4e0e3b 100644
--- a/components/precache/core/precache_fetcher.cc
+++ b/components/precache/core/precache_fetcher.cc
@@ -105,8 +105,8 @@ class PrecacheFetcher::Fetcher : public net::URLFetcherDelegate {
// the specified URL using the specified request context.
Fetcher(net::URLRequestContextGetter* request_context, const GURL& url,
const base::Callback<void(const URLFetcher&)>& callback);
- virtual ~Fetcher() {}
- virtual void OnURLFetchComplete(const URLFetcher* source) override;
+ ~Fetcher() override {}
+ void OnURLFetchComplete(const URLFetcher* source) override;
private:
const base::Callback<void(const URLFetcher&)> callback_;
« no previous file with comments | « components/precache/content/precache_manager_unittest.cc ('k') | components/precache/core/precache_fetcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698