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

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

Issue 9580002: Add ResourceRequestInfo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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
Index: content/browser/renderer_host/cross_site_resource_handler.cc
===================================================================
--- content/browser/renderer_host/cross_site_resource_handler.cc (revision 125418)
+++ content/browser/renderer_host/cross_site_resource_handler.cc (working copy)
@@ -10,7 +10,7 @@
#include "base/logging.h"
#include "content/browser/renderer_host/render_view_host_impl.h"
#include "content/browser/renderer_host/resource_dispatcher_host.h"
-#include "content/browser/renderer_host/resource_dispatcher_host_request_info.h"
+#include "content/browser/renderer_host/resource_request_info_impl.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/global_request_id.h"
#include "content/public/browser/render_view_host_delegate.h"
@@ -80,7 +80,7 @@
DLOG(WARNING) << "Request wasn't found";
return false;
}
- ResourceDispatcherHostRequestInfo* info =
+ ResourceRequestInfoImpl* info =
ResourceDispatcherHost::InfoForRequest(request);
// If this is a download, just pass the response through without doing a
@@ -170,7 +170,7 @@
}
// Remove ourselves from the ExtraRequestInfo.
- ResourceDispatcherHostRequestInfo* info =
+ ResourceRequestInfoImpl* info =
ResourceDispatcherHost::InfoForRequest(request);
info->set_cross_site_handler(NULL);
@@ -202,7 +202,7 @@
DLOG(WARNING) << "Cross site response for a request that wasn't found";
return;
}
- ResourceDispatcherHostRequestInfo* info =
+ ResourceRequestInfoImpl* info =
ResourceDispatcherHost::InfoForRequest(request);
info->set_cross_site_handler(this);
« no previous file with comments | « content/browser/renderer_host/buffered_resource_handler.cc ('k') | content/browser/renderer_host/dummy_resource_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698