| Index: net/proxy/proxy_script_fetcher_impl_unittest.cc
|
| diff --git a/net/proxy/proxy_script_fetcher_impl_unittest.cc b/net/proxy/proxy_script_fetcher_impl_unittest.cc
|
| index bd6404b29931f623911d0f87408bf5865bb4ea08..7ece88cabd4737792e234485f38ecfa789c4b0c4 100644
|
| --- a/net/proxy/proxy_script_fetcher_impl_unittest.cc
|
| +++ b/net/proxy/proxy_script_fetcher_impl_unittest.cc
|
| @@ -49,19 +49,21 @@ struct FetchResult {
|
| class CheckNoRevocationFlagSetInterceptor :
|
| public URLRequestJobFactory::Interceptor {
|
| public:
|
| - virtual URLRequestJob* MaybeIntercept(URLRequest* request) const OVERRIDE {
|
| + virtual URLRequestJob* MaybeIntercept(
|
| + URLRequest* request, NetworkDelegate* network_delegate) const OVERRIDE {
|
| EXPECT_TRUE(request->load_flags() & LOAD_DISABLE_CERT_REVOCATION_CHECKING);
|
| return NULL;
|
| }
|
|
|
| - virtual URLRequestJob* MaybeInterceptRedirect(const GURL& location,
|
| - URLRequest* request)
|
| - const OVERRIDE {
|
| + virtual URLRequestJob* MaybeInterceptRedirect(
|
| + const GURL& location,
|
| + URLRequest* request,
|
| + NetworkDelegate* network_delegate) const OVERRIDE {
|
| return NULL;
|
| }
|
|
|
| - virtual URLRequestJob* MaybeInterceptResponse(URLRequest* request)
|
| - const OVERRIDE{
|
| + virtual URLRequestJob* MaybeInterceptResponse(
|
| + URLRequest* request, NetworkDelegate* network_delegate) const OVERRIDE {
|
| return NULL;
|
| }
|
| };
|
|
|