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

Unified Diff: chrome/browser/history/history_backend.cc

Issue 8008021: Add new UMA stats to get a handle on Downloads UI Usage (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: merge Created 9 years, 2 months 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
« no previous file with comments | « chrome/browser/history/history_backend.h ('k') | chrome/browser/history/history_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/history_backend.cc
diff --git a/chrome/browser/history/history_backend.cc b/chrome/browser/history/history_backend.cc
index bee9c8c8f74223a9731ebab6356cedac1de71f71..cc11b94b064f9ce2ea13aa8d1163a47717e23c25 100644
--- a/chrome/browser/history/history_backend.cc
+++ b/chrome/browser/history/history_backend.cc
@@ -1150,11 +1150,9 @@ void HistoryBackend::CleanUpInProgressEntries() {
}
// Update a particular download entry.
-void HistoryBackend::UpdateDownload(int64 received_bytes,
- int32 state,
- int64 db_handle) {
+void HistoryBackend::UpdateDownload(const DownloadPersistentStoreInfo& data) {
if (db_.get())
- db_->UpdateDownload(received_bytes, state, db_handle);
+ db_->UpdateDownload(data);
}
// Update the path of a particular download entry.
« no previous file with comments | « chrome/browser/history/history_backend.h ('k') | chrome/browser/history/history_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698