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

Unified Diff: chrome/browser/download/download_file.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
« no previous file with comments | « chrome/browser/download/download_file.h ('k') | chrome/browser/download/download_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/download/download_file.cc
===================================================================
--- chrome/browser/download/download_file.cc (revision 35459)
+++ chrome/browser/download/download_file.cc (working copy)
@@ -429,6 +429,7 @@
const GURL& url,
const GURL& referrer,
const std::string& referrer_charset,
+ const FilePath& save_file_path,
int render_process_host_id,
int render_view_id,
URLRequestContextGetter* request_context_getter) {
@@ -440,6 +441,7 @@
url,
referrer,
referrer_charset,
+ save_file_path,
render_process_host_id,
render_view_id,
request_context_getter));
@@ -524,6 +526,7 @@
const GURL& url,
const GURL& referrer,
const std::string& referrer_charset,
+ const FilePath& save_file_path,
int render_process_host_id,
int render_view_id,
URLRequestContextGetter* request_context_getter) {
@@ -534,6 +537,7 @@
resource_dispatcher_host_->BeginDownload(url,
referrer,
+ save_file_path,
render_process_host_id,
render_view_id,
context);
« no previous file with comments | « chrome/browser/download/download_file.h ('k') | chrome/browser/download/download_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698