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

Unified Diff: content/browser/renderer_host/buffered_resource_handler.cc

Issue 9369009: Make content::ResourceContext be a real interface like the rest of the Content API (i.e. don't ha... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 8 years, 10 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: content/browser/renderer_host/buffered_resource_handler.cc
===================================================================
--- content/browser/renderer_host/buffered_resource_handler.cc (revision 121250)
+++ content/browser/renderer_host/buffered_resource_handler.cc (working copy)
@@ -307,7 +307,7 @@
scoped_refptr<ResourceHandler> handler(
host_->CreateResourceHandlerForDownload(
request_,
- *info->context(),
+ info->context(),
info->child_id(),
info->route_id(),
info->request_id(),
@@ -371,7 +371,7 @@
bool stale = false;
webkit::WebPluginInfo plugin;
bool found = PluginServiceImpl::GetInstance()->GetPluginInfo(
- info->child_id(), info->route_id(), *info->context(),
+ info->child_id(), info->route_id(), info->context(),
request_->url(), GURL(), type, allow_wildcard,
&stale, &plugin, NULL);

Powered by Google App Engine
This is Rietveld 408576698