Index: chrome/browser/download/download_item.h |
diff --git a/chrome/browser/download/download_item.h b/chrome/browser/download/download_item.h |
index c22a5bf47a64edfc1b9018259bbbf7c46d5e23a2..e86c6c050c87c7e8d902dd577edce49aa7f8d3a7 100644 |
--- a/chrome/browser/download/download_item.h |
+++ b/chrome/browser/download/download_item.h |
@@ -280,8 +280,6 @@ class DownloadItem : public NotificationObserver { |
int64 received_bytes() const { return received_bytes_; } |
int32 id() const { return download_id_; } |
base::Time start_time() const { return start_time_; } |
- void set_db_handle(int64 handle) { db_handle_ = handle; } |
- int64 db_handle() const { return db_handle_; } |
bool is_paused() const { return is_paused_; } |
bool open_when_complete() const { return open_when_complete_; } |
void set_open_when_complete(bool open) { open_when_complete_ = open; } |
@@ -425,9 +423,6 @@ class DownloadItem : public NotificationObserver { |
// Time the download was started |
base::Time start_time_; |
- // Our persistent store handle |
- int64 db_handle_; |
- |
// Timer for regularly updating our observers |
base::RepeatingTimer<DownloadItem> update_timer_; |