Index: chrome/browser/history/download_history_info.cc |
diff --git a/chrome/browser/history/download_history_info.cc b/chrome/browser/history/download_history_info.cc |
index 439f714ef478bd3c3944426ac488b63c6d089aec..1aa1673cd549af7025125fca7457f957f2144d69 100644 |
--- a/chrome/browser/history/download_history_info.cc |
+++ b/chrome/browser/history/download_history_info.cc |
@@ -4,15 +4,6 @@ |
#include "chrome/browser/history/download_history_info.h" |
-#include "chrome/browser/download/download_item.h" |
- |
-DownloadHistoryInfo::DownloadHistoryInfo() |
- : received_bytes(0), |
- total_bytes(0), |
- state(0), |
- db_handle(0) { |
-} |
- |
DownloadHistoryInfo::DownloadHistoryInfo(const FilePath& path, |
const GURL& url, |
const GURL& referrer, |
@@ -20,7 +11,7 @@ DownloadHistoryInfo::DownloadHistoryInfo(const FilePath& path, |
int64 received, |
int64 total, |
int32 download_state, |
- int64 handle) |
+ int32 ident) |
: path(path), |
url(url), |
referrer_url(referrer), |
@@ -28,8 +19,5 @@ DownloadHistoryInfo::DownloadHistoryInfo(const FilePath& path, |
received_bytes(received), |
total_bytes(total), |
state(download_state), |
- db_handle(handle) { |
-} |
- |
-DownloadHistoryInfo::~DownloadHistoryInfo() { // For linux-clang. |
+ id(ident) { |
} |