diff options
Diffstat (limited to 'chrome/browser/chromeos/gview_request_interceptor.cc')
-rw-r--r-- | chrome/browser/chromeos/gview_request_interceptor.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/gview_request_interceptor.cc b/chrome/browser/chromeos/gview_request_interceptor.cc index c2e0e4b..69f97b2a 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) { |