Index: chrome/browser/chromeos/gview_request_interceptor.cc |
diff --git a/chrome/browser/chromeos/gview_request_interceptor.cc b/chrome/browser/chromeos/gview_request_interceptor.cc |
index c2e0e4b3a5ee4fc8e7089fb3b13a830acb8c4f4c..69f97b2a3d9afca6638994612a7c71dcff684a08 100644 |
--- a/chrome/browser/chromeos/gview_request_interceptor.cc |
+++ b/chrome/browser/chromeos/gview_request_interceptor.cc |
@@ -43,14 +43,14 @@ GViewRequestInterceptor::~GViewRequestInterceptor() { |
net::URLRequest::UnregisterRequestInterceptor(this); |
} |
-URLRequestJob* GViewRequestInterceptor::MaybeIntercept( |
+net::URLRequestJob* GViewRequestInterceptor::MaybeIntercept( |
net::URLRequest* request) { |
// Don't attempt to intercept here as we want to wait until the mime |
// type is fully determined. |
return NULL; |
} |
-URLRequestJob* GViewRequestInterceptor::MaybeInterceptResponse( |
+net::URLRequestJob* GViewRequestInterceptor::MaybeInterceptResponse( |
net::URLRequest* request) { |
// Do not intercept this request if it is a download. |
if (request->load_flags() & net::LOAD_IS_DOWNLOAD) { |