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

Unified Diff: chrome/browser/extensions/favicon_downloader_unittest.cc

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (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: chrome/browser/extensions/favicon_downloader_unittest.cc
diff --git a/chrome/browser/extensions/favicon_downloader_unittest.cc b/chrome/browser/extensions/favicon_downloader_unittest.cc
index 396466b45db4585c494591ac0e3208e3af2626a2..8d700cca97b42a658753ff490cbfb808669217d3 100644
--- a/chrome/browser/extensions/favicon_downloader_unittest.cc
+++ b/chrome/browser/extensions/favicon_downloader_unittest.cc
@@ -51,14 +51,11 @@ class TestFaviconDownloader : public FaviconDownloader {
base::Unretained(this))),
id_counter_(0) {
}
- virtual ~TestFaviconDownloader() {}
+ ~TestFaviconDownloader() override {}
- virtual int DownloadImage(const GURL& url) override {
- return id_counter_++;
- }
+ int DownloadImage(const GURL& url) override { return id_counter_++; }
- virtual std::vector<content::FaviconURL> GetFaviconURLsFromWebContents()
- override {
+ std::vector<content::FaviconURL> GetFaviconURLsFromWebContents() override {
return initial_favicon_urls_;
}
« no previous file with comments | « chrome/browser/extensions/favicon_downloader.h ('k') | chrome/browser/extensions/global_shortcut_listener_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698