| Index: chrome/browser/net/dns_probe_browsertest.cc
|
| diff --git a/chrome/browser/net/dns_probe_browsertest.cc b/chrome/browser/net/dns_probe_browsertest.cc
|
| index 5363f67938c435ddeefa84d04879be59ee29670e..4b574f407748c5208fd5cacb765d5133229f3579 100644
|
| --- a/chrome/browser/net/dns_probe_browsertest.cc
|
| +++ b/chrome/browser/net/dns_probe_browsertest.cc
|
| @@ -240,7 +240,7 @@ class BreakableCorrectionInterceptor : public URLRequestInterceptor {
|
|
|
| URLRequestJob* MaybeInterceptRequest(
|
| URLRequest* request,
|
| - NetworkDelegate* network_delegate) const override {
|
| + NetworkDelegate* network_delegate) override {
|
| if (net_error_ != net::OK) {
|
| DelayableURLRequestFailedJob* job =
|
| new DelayableURLRequestFailedJob(
|
| @@ -260,6 +260,19 @@ class BreakableCorrectionInterceptor : public URLRequestInterceptor {
|
| }
|
| }
|
|
|
| + net::URLRequestJob* MaybeInterceptRedirect(
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate,
|
| + const GURL& location) override {
|
| + return NULL;
|
| + }
|
| +
|
| + net::URLRequestJob* MaybeInterceptResponse(
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate) override {
|
| + return NULL;
|
| + }
|
| +
|
| void set_net_error(int net_error) { net_error_ = net_error; }
|
|
|
| void SetDelayRequests(bool delay_requests) {
|
|
|