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

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

Issue 8371009: Make passing of DownloadRequestHandle separate from DownloadCreateInfo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to LKGR. 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 | « content/browser/download/download_create_info.h ('k') | content/browser/download/download_file.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2fd52f9712d91af9466a9d2b81b2b25faf3863cb..72bb3237f5131709d0a4d6f2e4e076655cd479d4 100644
--- a/content/browser/download/download_create_info.cc
+++ b/content/browser/download/download_create_info.cc
@@ -54,7 +54,6 @@ std::string DownloadCreateInfo::DebugString() const {
" path = \"%" PRFilePath "\""
" received_bytes = %" PRId64
" total_bytes = %" PRId64
- " request_handle = %s"
" prompt_user_for_save_location = %c"
" }",
download_id,
@@ -62,7 +61,6 @@ std::string DownloadCreateInfo::DebugString() const {
path.value().c_str(),
received_bytes,
total_bytes,
- request_handle.DebugString().c_str(),
prompt_user_for_save_location ? 'T' : 'F');
}
« no previous file with comments | « content/browser/download/download_create_info.h ('k') | content/browser/download/download_file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698