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

Unified Diff: chrome/browser/plugins/plugin_installer.cc

Issue 11028131: Shift passage of FileStream in downloads system to be by scoped_ptr<>. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed blank line. Created 8 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
Index: chrome/browser/plugins/plugin_installer.cc
diff --git a/chrome/browser/plugins/plugin_installer.cc b/chrome/browser/plugins/plugin_installer.cc
index 2b2ea7e87546380ba9ee5c5d4cecc13e5829b940..58d3e5dae8540dc39777f052385c1678c45fdf32 100644
--- a/chrome/browser/plugins/plugin_installer.cc
+++ b/chrome/browser/plugins/plugin_installer.cc
@@ -54,7 +54,7 @@ void BeginDownload(
render_process_host_id,
render_view_host_routing_id,
true, // prefer_cache
- content::DownloadSaveInfo(),
+ scoped_ptr<content::DownloadSaveInfo>(new content::DownloadSaveInfo()),
callback);
if (error != net::OK) {

Powered by Google App Engine
This is Rietveld 408576698