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

Unified Diff: chrome/browser/renderer_host/download_throttling_resource_handler.cc

Issue 351029: Support dragging a virtual file out of the browser. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 12 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: chrome/browser/renderer_host/download_throttling_resource_handler.cc
===================================================================
--- chrome/browser/renderer_host/download_throttling_resource_handler.cc (revision 35459)
+++ chrome/browser/renderer_host/download_throttling_resource_handler.cc (working copy)
@@ -130,6 +130,7 @@
void DownloadThrottlingResourceHandler::ContinueDownload() {
DCHECK(!download_handler_.get());
+ FilePath save_file_path;
download_handler_ =
new DownloadResourceHandler(host_,
render_process_host_id_,
@@ -138,7 +139,8 @@
url_,
host_->download_file_manager(),
request_,
- false);
+ false,
+ save_file_path);
if (response_.get())
download_handler_->OnResponseStarted(request_id_, response_.get());
« no previous file with comments | « chrome/browser/renderer_host/download_resource_handler.cc ('k') | chrome/browser/renderer_host/resource_dispatcher_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698