HomeSort by relevance Sort by last modified time
    Searched defs:DownloadHistory (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/download/
download_history.h 21 class DownloadHistory {
27 explicit DownloadHistory(Profile* profile);
28 ~DownloadHistory();
66 DISALLOW_COPY_AND_ASSIGN(DownloadHistory);
download_history.cc 18 const int DownloadHistory::kUninitializedHandle = 0;
20 DownloadHistory::DownloadHistory(Profile* profile)
26 DownloadHistory::~DownloadHistory() {
29 void DownloadHistory::Load(HistoryService::DownloadQueryCallback* callback) {
42 void DownloadHistory::AddEntry(
68 void DownloadHistory::UpdateEntry(DownloadItem* download_item) {
84 void DownloadHistory::UpdateDownloadPath(DownloadItem* download_item,
96 void DownloadHistory::RemoveEntry(DownloadItem* download_item)
    [all...]
  /external/chromium_org/chrome/browser/download/
download_history.h 26 class DownloadHistory : public AllDownloadItemNotifier::Observer {
65 // Fires when the DownloadHistory is being destroyed so that implementors
66 // can RemoveObserver() and nullify their DownloadHistory*s.
74 // DownloadService creates DownloadHistory some time after DownloadManager is
75 // created and destroys DownloadHistory as DownloadManager is shutting down.
76 DownloadHistory(
80 virtual ~DownloadHistory();
142 base::WeakPtrFactory<DownloadHistory> weak_ptr_factory_;
144 DISALLOW_COPY_AND_ASSIGN(DownloadHistory);
download_history.cc 5 // DownloadHistory manages persisting DownloadItems to the history service by
9 // DownloadHistory decides whether and when to add items to, remove items from,
10 // and update items in the database. DownloadHistory uses DownloadHistoryData to
14 // initialized, DownloadHistory is created and queries the HistoryService. When
16 // DownloadHistory uses DownloadManager::CreateDownloadItem() to inform
21 // item is still being added to the database, DownloadHistory uses
24 // DownloadHistory to prevent use-after-free bugs.
25 // ChromeDownloadManagerDelegate owns DownloadHistory, and deletes it in
47 // and keeping maps in DownloadHistory from DownloadItem to this information is
48 // error-prone and complicated. Unfortunately, DownloadHistory::removing_*_ an
    [all...]

Completed in 36 milliseconds