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, |