| Index: content/browser/download/download_manager_impl.cc
|
| diff --git a/content/browser/download/download_manager_impl.cc b/content/browser/download/download_manager_impl.cc
|
| index 0ef47297270d7f0b7d7a9f929706487b2a0ba862..30296cb82e7bffbcf3716adf1e166e31be1069a9 100644
|
| --- a/content/browser/download/download_manager_impl.cc
|
| +++ b/content/browser/download/download_manager_impl.cc
|
| @@ -161,9 +161,9 @@ class MapValueIteratorAdapter {
|
| class DownloadItemFactoryImpl : public DownloadItemFactory {
|
| public:
|
| DownloadItemFactoryImpl() {}
|
| - virtual ~DownloadItemFactoryImpl() {}
|
| + ~DownloadItemFactoryImpl() override {}
|
|
|
| - virtual DownloadItemImpl* CreatePersistedItem(
|
| + DownloadItemImpl* CreatePersistedItem(
|
| DownloadItemImplDelegate* delegate,
|
| uint32 download_id,
|
| const base::FilePath& current_path,
|
| @@ -205,7 +205,7 @@ class DownloadItemFactoryImpl : public DownloadItemFactory {
|
| bound_net_log);
|
| }
|
|
|
| - virtual DownloadItemImpl* CreateActiveItem(
|
| + DownloadItemImpl* CreateActiveItem(
|
| DownloadItemImplDelegate* delegate,
|
| uint32 download_id,
|
| const DownloadCreateInfo& info,
|
| @@ -213,7 +213,7 @@ class DownloadItemFactoryImpl : public DownloadItemFactory {
|
| return new DownloadItemImpl(delegate, download_id, info, bound_net_log);
|
| }
|
|
|
| - virtual DownloadItemImpl* CreateSavePageItem(
|
| + DownloadItemImpl* CreateSavePageItem(
|
| DownloadItemImplDelegate* delegate,
|
| uint32 download_id,
|
| const base::FilePath& path,
|
|
|