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

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

Issue 63036: Fix a crash where the ResourceMessageFilter is deleted (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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/resource_dispatcher_host.cc
===================================================================
--- chrome/browser/renderer_host/resource_dispatcher_host.cc (revision 13541)
+++ chrome/browser/renderer_host/resource_dispatcher_host.cc (working copy)
@@ -382,7 +382,8 @@
request_data.url,
request_data.resource_type,
safe_browsing_,
- this);
+ this,
+ receiver_);
}
// Insert a buffered event handler before the actual one.
@@ -513,7 +514,8 @@
url,
ResourceType::MAIN_FRAME,
safe_browsing_,
- this);
+ this,
+ receiver_);
}
bool known_proto = URLRequest::IsHandledURL(url);

Powered by Google App Engine
This is Rietveld 408576698