summaryrefslogtreecommitdiffstats
path: root/chrome/browser/download
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/download')
-rw-r--r--chrome/browser/download/download_history.cc3
-rw-r--r--chrome/browser/download/download_history.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/download/download_history.cc b/chrome/browser/download/download_history.cc
index d232a87..26b65c4 100644
--- a/chrome/browser/download/download_history.cc
+++ b/chrome/browser/download/download_history.cc
@@ -23,6 +23,9 @@ DownloadHistory::DownloadHistory(Profile* profile)
DCHECK(profile);
}
+DownloadHistory::~DownloadHistory() {
+}
+
void DownloadHistory::Load(HistoryService::DownloadQueryCallback* callback) {
DCHECK(callback);
HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
diff --git a/chrome/browser/download/download_history.h b/chrome/browser/download/download_history.h
index 52f93a0..d7f9188 100644
--- a/chrome/browser/download/download_history.h
+++ b/chrome/browser/download/download_history.h
@@ -25,6 +25,7 @@ class DownloadHistory {
static const int kUninitializedHandle;
explicit DownloadHistory(Profile* profile);
+ ~DownloadHistory();
// Retrieves DownloadCreateInfos saved in the history.
void Load(HistoryService::DownloadQueryCallback* callback);