| Index: chrome/browser/download/download_create_info.cc
|
| diff --git a/chrome/browser/download/download_create_info.cc b/chrome/browser/download/download_create_info.cc
|
| index 8a77e821c2bd337a02a306c00c9c0e0b06dd8677..47cc1952736538c15dbb7197c115c8a160ae5d51 100644
|
| --- a/chrome/browser/download/download_create_info.cc
|
| +++ b/chrome/browser/download/download_create_info.cc
|
| @@ -53,9 +53,7 @@ std::string DownloadCreateInfo::DebugString() const {
|
| " path = \"%" PRFilePath "\""
|
| " received_bytes = %" PRId64
|
| " total_bytes = %" PRId64
|
| - " child_id = %d"
|
| - " render_view_id = %d"
|
| - " request_id = %d"
|
| + " process_handle = %s"
|
| " prompt_user_for_save_location = %c"
|
| " }",
|
| download_id,
|
| @@ -63,9 +61,7 @@ std::string DownloadCreateInfo::DebugString() const {
|
| path.value().c_str(),
|
| received_bytes,
|
| total_bytes,
|
| - process_handle.child_id(),
|
| - process_handle.render_view_id(),
|
| - process_handle.request_id(),
|
| + process_handle.DebugString().c_str(),
|
| prompt_user_for_save_location ? 'T' : 'F');
|
| }
|
|
|
|
|