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

Unified Diff: chrome/browser/download/download_status_updater.h

Issue 665253002: Standardize usage of virtual/override/final in chrome/browser/download/ (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/download/download_status_updater.h
diff --git a/chrome/browser/download/download_status_updater.h b/chrome/browser/download/download_status_updater.h
index 01dd5ae8bbcc138d4fa3f8558c8e1e25ed35b7c2..1dfd4ba7266fca0d9015db05cced0d436a3dfd80 100644
--- a/chrome/browser/download/download_status_updater.h
+++ b/chrome/browser/download/download_status_updater.h
@@ -17,7 +17,7 @@ class DownloadStatusUpdater
: public AllDownloadItemNotifier::Observer {
public:
DownloadStatusUpdater();
- virtual ~DownloadStatusUpdater();
+ ~DownloadStatusUpdater() override;
// Fills in |*download_count| with the number of currently active downloads.
// If we know the final size of all downloads, this routine returns true
@@ -33,10 +33,10 @@ class DownloadStatusUpdater
void AddManager(content::DownloadManager* manager);
// AllDownloadItemNotifier::Observer
- virtual void OnDownloadCreated(
- content::DownloadManager* manager, content::DownloadItem* item) override;
- virtual void OnDownloadUpdated(
- content::DownloadManager* manager, content::DownloadItem* item) override;
+ void OnDownloadCreated(content::DownloadManager* manager,
+ content::DownloadItem* item) override;
+ void OnDownloadUpdated(content::DownloadManager* manager,
+ content::DownloadItem* item) override;
protected:
// Platform-specific function to update the platform UI for download progress.
« no previous file with comments | « chrome/browser/download/download_shelf_context_menu.h ('k') | chrome/browser/download/download_status_updater_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698