Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5285)

Unified Diff: chrome/browser/history/download_persistent_store_info.h

Issue 10915180: Make DownloadHistory observe manager, items (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: @r166680 Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/history/download_persistent_store_info.h
diff --git a/chrome/browser/history/download_persistent_store_info.h b/chrome/browser/history/download_persistent_store_info.h
new file mode 100644
index 0000000000000000000000000000000000000000..b11e750bdca6f8e141436d209a6341c314575484
--- /dev/null
+++ b/chrome/browser/history/download_persistent_store_info.h
@@ -0,0 +1,67 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_HISTORY_DOWNLOAD_PERSISTENT_STORE_INFO_H_
sky 2012/11/08 20:55:17 It looks like you're moving this from content. How
benjhayden 2012/11/08 21:40:03 I'm sorry, I don't know. I manually computed the d
+#define CHROME_BROWSER_HISTORY_DOWNLOAD_PERSISTENT_STORE_INFO_H_
+
+#include "base/file_path.h"
+#include "base/time.h"
+#include "content/public/browser/download_item.h"
+#include "googleurl/src/gurl.h"
+
+// Contains the information that is stored in the download system's persistent
+// store (or refers to it). DownloadHistory uses this to communicate with the
+// DownloadDatabase through the HistoryService.
+struct DownloadPersistentStoreInfo {
+ DownloadPersistentStoreInfo();
+ DownloadPersistentStoreInfo(
+ const FilePath& path,
+ const GURL& url,
+ const GURL& referrer,
+ const base::Time& start,
+ const base::Time& end,
+ int64 received,
+ int64 total,
+ content::DownloadItem::DownloadState download_state,
+ int64 handle,
+ bool download_opened);
+ ~DownloadPersistentStoreInfo();
+
+ // The current path to the downloaded file.
+ // TODO(benjhayden/asanka): Persist the target filename as well.
+ FilePath path;
+
+ // The URL from which we are downloading. This is the final URL after any
+ // redirection by the server for |url_chain|. Is not changed by
+ // UpdateDownload().
+ GURL url;
+
+ // The URL that referred us. Is not changed by UpdateDownload().
+ GURL referrer_url;
+
+ // The time when the download started. Is not changed by UpdateDownload().
+ base::Time start_time;
+
+ // The time when the download completed.
+ base::Time end_time;
+
+ // The number of bytes received (so far).
+ int64 received_bytes;
+
+ // The total number of bytes in the download. Is not changed by
+ // UpdateDownload().
+ int64 total_bytes;
+
+ // The current state of the download.
+ content::DownloadItem::DownloadState state;
+
+ // The handle of the download in the database. Is not changed by
+ // UpdateDownload().
+ int64 db_handle;
+
+ // Whether this download has ever been opened from the browser.
+ bool opened;
+};
+
+#endif // CHROME_BROWSER_HISTORY_DOWNLOAD_PERSISTENT_STORE_INFO_H_

Powered by Google App Engine
This is Rietveld 408576698