| Index: chrome/browser/net/connect_interceptor.h
|
| diff --git a/chrome/browser/net/connect_interceptor.h b/chrome/browser/net/connect_interceptor.h
|
| index 5fb3da778a69ebd665cd5e869360e5a5a111f78e..1cef9fe418f37f9ea049df2bb2af6b45a7dacb4c 100644
|
| --- a/chrome/browser/net/connect_interceptor.h
|
| +++ b/chrome/browser/net/connect_interceptor.h
|
| @@ -28,11 +28,15 @@ class ConnectInterceptor : public net::URLRequestJobFactory::Interceptor {
|
| // Overridden from net::URLRequest::Interceptor:
|
| // Learn about referrers, and optionally preconnect based on history.
|
| virtual net::URLRequestJob* MaybeIntercept(
|
| - net::URLRequest* request) const OVERRIDE;
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate) const OVERRIDE;
|
| virtual net::URLRequestJob* MaybeInterceptResponse(
|
| - net::URLRequest* request) const OVERRIDE;
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate) const OVERRIDE;
|
| virtual net::URLRequestJob* MaybeInterceptRedirect(
|
| - const GURL& location, net::URLRequest* request) const OVERRIDE;
|
| + const GURL& location,
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate) const OVERRIDE;
|
|
|
| private:
|
| // Provide access to local class TimedCache for testing.
|
|
|