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

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

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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/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 fa4c4be360c8d5dc0a5834979e40db0216f3c519..6e677430b03ca632dcf2ac76f8953b6f74b05514 100644
--- a/chrome/browser/download/all_download_item_notifier.h
+++ b/chrome/browser/download/all_download_item_notifier.h
@@ -66,15 +66,15 @@ class AllDownloadItemNotifier : public content::DownloadManager::Observer,
private:
// content::DownloadManager::Observer
- virtual void ManagerGoingDown(content::DownloadManager* manager) OVERRIDE;
+ virtual void ManagerGoingDown(content::DownloadManager* manager) override;
virtual void OnDownloadCreated(content::DownloadManager* manager,
- content::DownloadItem* item) OVERRIDE;
+ 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;
+ 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;
content::DownloadManager* manager_;
AllDownloadItemNotifier::Observer* observer_;
« no previous file with comments | « chrome/browser/domain_reliability/service_factory.h ('k') | chrome/browser/download/chrome_download_manager_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698