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

Unified Diff: chrome/browser/download/all_download_item_notifier.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
« no previous file with comments | « no previous file | chrome/browser/download/chrome_download_manager_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/download/all_download_item_notifier.h
diff --git a/chrome/browser/download/all_download_item_notifier.h b/chrome/browser/download/all_download_item_notifier.h
index 6e677430b03ca632dcf2ac76f8953b6f74b05514..86d4d68753058975b008c7a20dadc6e033edbb28 100644
--- a/chrome/browser/download/all_download_item_notifier.h
+++ b/chrome/browser/download/all_download_item_notifier.h
@@ -59,22 +59,22 @@ class AllDownloadItemNotifier : public content::DownloadManager::Observer,
AllDownloadItemNotifier(content::DownloadManager* manager,
Observer* observer);
- virtual ~AllDownloadItemNotifier();
+ ~AllDownloadItemNotifier() override;
// Returns NULL if the manager has gone down.
content::DownloadManager* GetManager() const { return manager_; }
private:
// content::DownloadManager::Observer
- virtual void ManagerGoingDown(content::DownloadManager* manager) override;
- virtual void OnDownloadCreated(content::DownloadManager* manager,
- content::DownloadItem* item) override;
+ void ManagerGoingDown(content::DownloadManager* manager) override;
+ void OnDownloadCreated(content::DownloadManager* manager,
+ content::DownloadItem* item) override;
// content::DownloadItem::Observer
- virtual void OnDownloadUpdated(content::DownloadItem* item) override;
- virtual void OnDownloadOpened(content::DownloadItem* item) override;
- virtual void OnDownloadRemoved(content::DownloadItem* item) override;
- virtual void OnDownloadDestroyed(content::DownloadItem* item) override;
+ void OnDownloadUpdated(content::DownloadItem* item) override;
+ void OnDownloadOpened(content::DownloadItem* item) override;
+ void OnDownloadRemoved(content::DownloadItem* item) override;
+ void OnDownloadDestroyed(content::DownloadItem* item) override;
content::DownloadManager* manager_;
AllDownloadItemNotifier::Observer* observer_;
« no previous file with comments | « no previous file | chrome/browser/download/chrome_download_manager_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698