Chromium Code Reviews| Index: content/shell/browser/shell_url_request_context_getter.h |
| diff --git a/content/shell/browser/shell_url_request_context_getter.h b/content/shell/browser/shell_url_request_context_getter.h |
| index 354951469c8d67eb10ea5a045947fa509ff61b60..cd40268e5ab3cf7c6551989d7bd85f56b20d1823 100644 |
| --- a/content/shell/browser/shell_url_request_context_getter.h |
| +++ b/content/shell/browser/shell_url_request_context_getter.h |
| @@ -36,7 +36,7 @@ class ShellURLRequestContextGetter : public net::URLRequestContextGetter { |
| base::MessageLoop* io_loop, |
| base::MessageLoop* file_loop, |
| ProtocolHandlerMap* protocol_handlers, |
| - ProtocolHandlerScopedVector protocol_interceptors, |
| + content::URLRequestInterceptorScopedVector request_interceptors, |
|
jam
2014/05/30 01:19:15
nit: here and below get rid of "content::"
mmenke
2014/05/30 14:40:22
Done.
|
| net::NetLog* net_log); |
| // net::URLRequestContextGetter implementation. |
| @@ -61,7 +61,7 @@ class ShellURLRequestContextGetter : public net::URLRequestContextGetter { |
| scoped_ptr<net::URLRequestContextStorage> storage_; |
| scoped_ptr<net::URLRequestContext> url_request_context_; |
| ProtocolHandlerMap protocol_handlers_; |
| - ProtocolHandlerScopedVector protocol_interceptors_; |
| + content::URLRequestInterceptorScopedVector request_interceptors_; |
| DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); |
| }; |