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

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

Issue 10974009: Rename HyperbolicDownloadItemNotifer -> AllDownloadItemNotifier (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 3 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/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);
};
« no previous file with comments | « chrome/browser/download/all_download_item_notifier_unittest.cc ('k') | chrome/browser/download/download_status_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698