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

Unified Diff: content/browser/download/download_create_info.cc

Issue 10831302: Download resumption - Preliminary (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed content unit tests. Created 8 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
Index: content/browser/download/download_create_info.cc
diff --git a/content/browser/download/download_create_info.cc b/content/browser/download/download_create_info.cc
index 051bcccf04e68912fa1d51aa1098633088ed3a77..3dcb30417def7fbcdb63cdbb366e8a58d5967bc7 100644
--- a/content/browser/download/download_create_info.cc
+++ b/content/browser/download/download_create_info.cc
@@ -49,6 +49,7 @@ std::string DownloadCreateInfo::DebugString() const {
return base::StringPrintf("{"
" download_id = %s"
" url = \"%s\""
+ " request_handle = %s"
" save_info.file_path = \"%" PRFilePath "\""
" received_bytes = %" PRId64
" total_bytes = %" PRId64
@@ -56,6 +57,7 @@ std::string DownloadCreateInfo::DebugString() const {
" }",
download_id.DebugString().c_str(),
url().spec().c_str(),
+ request_handle.DebugString().c_str(),
save_info.file_path.value().c_str(),
received_bytes,
total_bytes,

Powered by Google App Engine
This is Rietveld 408576698