| Index: chrome/browser/chromeos/gview_request_interceptor.h
|
| diff --git a/chrome/browser/chromeos/gview_request_interceptor.h b/chrome/browser/chromeos/gview_request_interceptor.h
|
| index 6b2ca8362d5c7db8fd5bf83620a6f097945a363d..41b7947021cbe53faa9b0381245a6628f142fbb1 100644
|
| --- a/chrome/browser/chromeos/gview_request_interceptor.h
|
| +++ b/chrome/browser/chromeos/gview_request_interceptor.h
|
| @@ -26,18 +26,21 @@ class GViewRequestInterceptor : public net::URLRequestJobFactory::Interceptor {
|
| // Always returns NULL because we don't want to attempt a redirect
|
| // before seeing the detected mime type of the request.
|
| virtual net::URLRequestJob* MaybeIntercept(
|
| - net::URLRequest* request) const OVERRIDE;
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate) const OVERRIDE;
|
|
|
| // Always returns NULL.
|
| virtual net::URLRequestJob* MaybeInterceptRedirect(
|
| const GURL& location,
|
| - net::URLRequest* request) const OVERRIDE;
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate) const OVERRIDE;
|
|
|
| // Determines if the requested document can be viewed by the Google
|
| // Document Viewer. If it can, returns a net::URLRequestJob that
|
| // redirects the browser to the view URL.
|
| virtual net::URLRequestJob* MaybeInterceptResponse(
|
| - net::URLRequest* request) const OVERRIDE;
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate) const OVERRIDE;
|
|
|
| private:
|
| bool ShouldUsePdfPlugin(net::URLRequest* request) const;
|
|
|