| Index: content/browser/download/drag_download_file.cc
|
| diff --git a/content/browser/download/drag_download_file.cc b/content/browser/download/drag_download_file.cc
|
| index 725792b2f6a2b85f0b129085a5185b3bac193cbc..ca68740a257c0bff5173de5054409a120eb66d15 100644
|
| --- a/content/browser/download/drag_download_file.cc
|
| +++ b/content/browser/download/drag_download_file.cc
|
| @@ -83,7 +83,7 @@ class DragDownloadFile::DragDownloadFileUI : public DownloadItem::Observer {
|
| }
|
|
|
| private:
|
| - virtual ~DragDownloadFileUI() {
|
| + ~DragDownloadFileUI() override {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| if (download_item_)
|
| download_item_->RemoveObserver(this);
|
| @@ -103,7 +103,7 @@ class DragDownloadFile::DragDownloadFileUI : public DownloadItem::Observer {
|
| }
|
|
|
| // DownloadItem::Observer:
|
| - virtual void OnDownloadUpdated(DownloadItem* item) override {
|
| + void OnDownloadUpdated(DownloadItem* item) override {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| DCHECK_EQ(download_item_, item);
|
| DownloadItem::DownloadState state = download_item_->GetState();
|
| @@ -121,7 +121,7 @@ class DragDownloadFile::DragDownloadFileUI : public DownloadItem::Observer {
|
| // Ignore other states.
|
| }
|
|
|
| - virtual void OnDownloadDestroyed(DownloadItem* item) override {
|
| + void OnDownloadDestroyed(DownloadItem* item) override {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| DCHECK_EQ(download_item_, item);
|
| if (!on_completed_.is_null()) {
|
|
|