Index: chrome/browser/renderer_host/async_resource_handler.cc |
diff --git a/chrome/browser/renderer_host/async_resource_handler.cc b/chrome/browser/renderer_host/async_resource_handler.cc |
index 70dfc742a5c091289cb6c45606c4dfb150b4fc6e..3458f7cfb79c05bdfe3a9e61f7be8d033fee005c 100644 |
--- a/chrome/browser/renderer_host/async_resource_handler.cc |
+++ b/chrome/browser/renderer_host/async_resource_handler.cc |
@@ -102,7 +102,7 @@ bool AsyncResourceHandler::OnRequestRedirected(int request_id, |
ResourceResponse* response, |
bool* defer) { |
*defer = true; |
- URLRequest* request = rdh_->GetURLRequest( |
+ net::URLRequest* request = rdh_->GetURLRequest( |
GlobalRequestID(process_id_, request_id)); |
LoadTimingObserver::PopulateTimingInfo(request, response); |
DevToolsNetLogObserver::PopulateResponseInfo(request, response); |
@@ -117,7 +117,7 @@ bool AsyncResourceHandler::OnResponseStarted(int request_id, |
// renderer will be able to set these precisely at the time the |
// request commits, avoiding the possibility of e.g. zooming the old content |
// or of having to layout the new content twice. |
- URLRequest* request = rdh_->GetURLRequest( |
+ net::URLRequest* request = rdh_->GetURLRequest( |
GlobalRequestID(process_id_, request_id)); |
LoadTimingObserver::PopulateTimingInfo(request, response); |