| Index: chrome/browser/renderer_host/cross_site_resource_handler.cc
|
| diff --git a/chrome/browser/renderer_host/cross_site_resource_handler.cc b/chrome/browser/renderer_host/cross_site_resource_handler.cc
|
| index ddab0e7989e6a640ab0a4cc6e6ca8f0e0e909026..2e2151569722b2dfeeb84d28ba7cbee33dd9ae40 100644
|
| --- a/chrome/browser/renderer_host/cross_site_resource_handler.cc
|
| +++ b/chrome/browser/renderer_host/cross_site_resource_handler.cc
|
| @@ -59,7 +59,7 @@ bool CrossSiteResourceHandler::OnResponseStarted(int request_id,
|
|
|
| // Look up the request and associated info.
|
| GlobalRequestID global_id(render_process_host_id_, request_id);
|
| - URLRequest* request = rdh_->GetURLRequest(global_id);
|
| + net::URLRequest* request = rdh_->GetURLRequest(global_id);
|
| if (!request) {
|
| DLOG(WARNING) << "Request wasn't found";
|
| return false;
|
| @@ -141,7 +141,7 @@ void CrossSiteResourceHandler::ResumeResponse() {
|
|
|
| // Find the request for this response.
|
| GlobalRequestID global_id(render_process_host_id_, request_id_);
|
| - URLRequest* request = rdh_->GetURLRequest(global_id);
|
| + net::URLRequest* request = rdh_->GetURLRequest(global_id);
|
| if (!request) {
|
| DLOG(WARNING) << "Resuming a request that wasn't found";
|
| return;
|
| @@ -189,7 +189,7 @@ void CrossSiteResourceHandler::StartCrossSiteTransition(
|
|
|
| // Store this handler on the ExtraRequestInfo, so that RDH can call our
|
| // ResumeResponse method when the close ACK is received.
|
| - URLRequest* request = rdh_->GetURLRequest(global_id);
|
| + net::URLRequest* request = rdh_->GetURLRequest(global_id);
|
| if (!request) {
|
| DLOG(WARNING) << "Cross site response for a request that wasn't found";
|
| return;
|
|
|