| Index: chrome/browser/download/download_status_updater.h
|
| diff --git a/chrome/browser/download/download_status_updater.h b/chrome/browser/download/download_status_updater.h
|
| index 8acaef66be559e665e09479983b39acf9cf56bfa..22083a3fcb09103408226719d0eabce1a366b466 100644
|
| --- a/chrome/browser/download/download_status_updater.h
|
| +++ b/chrome/browser/download/download_status_updater.h
|
| @@ -8,13 +8,13 @@
|
| #include <set>
|
|
|
| #include "base/basictypes.h"
|
| -#include "chrome/browser/download/hyperbolic_download_item_notifier.h"
|
| +#include "chrome/browser/download/all_download_item_notifier.h"
|
| #include "content/public/browser/download_item.h"
|
| #include "content/public/browser/download_manager.h"
|
|
|
| // Keeps track of download progress for the entire browser.
|
| class DownloadStatusUpdater
|
| - : public HyperbolicDownloadItemNotifier::Observer {
|
| + : public AllDownloadItemNotifier::Observer {
|
| public:
|
| DownloadStatusUpdater();
|
| virtual ~DownloadStatusUpdater();
|
| @@ -32,7 +32,7 @@ class DownloadStatusUpdater
|
| // manager when the manager is shutdown.
|
| void AddManager(content::DownloadManager* manager);
|
|
|
| - // HyperbolicDownloadItemNotifier::Observer
|
| + // AllDownloadItemNotifier::Observer
|
| virtual void OnDownloadCreated(
|
| content::DownloadManager* manager, content::DownloadItem* item) OVERRIDE;
|
| virtual void OnDownloadUpdated(
|
| @@ -46,7 +46,7 @@ class DownloadStatusUpdater
|
| virtual void UpdateAppIconDownloadProgress(content::DownloadItem* download);
|
|
|
| private:
|
| - std::vector<HyperbolicDownloadItemNotifier*> notifiers_;
|
| + std::vector<AllDownloadItemNotifier*> notifiers_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(DownloadStatusUpdater);
|
| };
|
|
|