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

Unified Diff: chrome_frame/utils.h

Issue 6677004: Fix the flakiness with download requests routed by ChromeFrame to the host br... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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_frame/urlmon_url_request.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/utils.h
===================================================================
--- chrome_frame/utils.h (revision 77487)
+++ chrome_frame/utils.h (working copy)
@@ -461,9 +461,9 @@
// This structure contains the parameters sent over to initiate a download
// request in the host browser.
struct DownloadInHostParams {
- IBindCtx* bind_ctx;
- IMoniker* moniker;
- IStream* post_data;
+ base::win::ScopedComPtr<IBindCtx> bind_ctx;
+ base::win::ScopedComPtr<IMoniker> moniker;
+ base::win::ScopedComPtr<IStream> post_data;
std::string request_headers;
};
« no previous file with comments | « chrome_frame/urlmon_url_request.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698