Index: chrome/browser/download/download_ui_controller.cc |
diff --git a/chrome/browser/download/download_ui_controller.cc b/chrome/browser/download/download_ui_controller.cc |
index 992525a3d0da39705fda53f4cf8f4f3cecdc23d7..6f8b2199d26197b06f542f3e883d4c7859914d12 100644 |
--- a/chrome/browser/download/download_ui_controller.cc |
+++ b/chrome/browser/download/download_ui_controller.cc |
@@ -57,11 +57,11 @@ class DefaultUIControllerDelegate : public DownloadUIController::Delegate { |
// |profile| is required to outlive DefaultUIControllerDelegate. |
explicit DefaultUIControllerDelegate(Profile* profile) |
: profile_(profile) {} |
- virtual ~DefaultUIControllerDelegate() {} |
+ ~DefaultUIControllerDelegate() override {} |
private: |
// DownloadUIController::Delegate |
- virtual void OnNewDownloadReady(content::DownloadItem* item) override; |
+ void OnNewDownloadReady(content::DownloadItem* item) override; |
Profile* profile_; |
}; |