| Index: components/component_updater/test/url_request_post_interceptor.cc
|
| diff --git a/components/component_updater/test/url_request_post_interceptor.cc b/components/component_updater/test/url_request_post_interceptor.cc
|
| index f2dc839ccd0492ea03b3528108b79d01f0e7e0ae..1a3f3e05115bda6b84cf725073fe3d9569dcceb0 100644
|
| --- a/components/component_updater/test/url_request_post_interceptor.cc
|
| +++ b/components/component_updater/test/url_request_post_interceptor.cc
|
| @@ -226,6 +226,19 @@ class URLRequestPostInterceptor::Delegate : public net::URLRequestInterceptor {
|
| return NULL;
|
| }
|
|
|
| + net::URLRequestJob* MaybeInterceptResponse(
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate) const override {
|
| + return NULL;
|
| + }
|
| +
|
| + net::URLRequestJob* MaybeInterceptRedirect(
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate,
|
| + const GURL& location) const override {
|
| + return NULL;
|
| + }
|
| +
|
| typedef std::map<GURL, URLRequestPostInterceptor*> InterceptorMap;
|
| InterceptorMap interceptors_;
|
|
|
|
|