#include "components/download/content/public/all_download_item_notifier.h"
#include "base/trace_event/memory_usage_estimator.h"
namespace download {
AllDownloadItemNotifier::AllDownloadItemNotifier(
content::DownloadManager* manager,
AllDownloadItemNotifier::Observer* observer)
: … { … }
AllDownloadItemNotifier::~AllDownloadItemNotifier() { … }
size_t AllDownloadItemNotifier::EstimateMemoryUsage() const { … }
void AllDownloadItemNotifier::OnManagerInitialized() { … }
void AllDownloadItemNotifier::ManagerGoingDown(
content::DownloadManager* manager) { … }
void AllDownloadItemNotifier::OnDownloadCreated(
content::DownloadManager* manager,
DownloadItem* item) { … }
void AllDownloadItemNotifier::OnDownloadUpdated(DownloadItem* item) { … }
void AllDownloadItemNotifier::OnDownloadOpened(DownloadItem* item) { … }
void AllDownloadItemNotifier::OnDownloadRemoved(DownloadItem* item) { … }
void AllDownloadItemNotifier::OnDownloadDestroyed(DownloadItem* item) { … }
}