| Index: net/url_request/url_request_job_manager.h
|
| diff --git a/net/url_request/url_request_job_manager.h b/net/url_request/url_request_job_manager.h
|
| index ea441bea316542dc6422e614f35b771aabe65a53..6d3aef06df6ac5c1cfc79833ca6db2e7c15b362c 100644
|
| --- a/net/url_request/url_request_job_manager.h
|
| +++ b/net/url_request/url_request_job_manager.h
|
| @@ -13,7 +13,8 @@
|
| #include "base/threading/platform_thread.h"
|
| #include "net/url_request/url_request.h"
|
|
|
| -template <typename T> struct DefaultSingletonTraits;
|
| +template <typename T>
|
| +struct DefaultSingletonTraits;
|
|
|
| namespace net {
|
|
|
| @@ -50,7 +51,8 @@ class URLRequestJobManager {
|
| // at all to allow interception of failed requests due to network errors.
|
| // Returns NULL if no interceptor intervenes.
|
| URLRequestJob* MaybeInterceptResponse(
|
| - URLRequest* request, NetworkDelegate* network_delegate) const;
|
| + URLRequest* request,
|
| + NetworkDelegate* network_delegate) const;
|
|
|
| // Returns true if there is a protocol factory registered for the given
|
| // scheme. Note: also returns true if there is a built-in handler for the
|
| @@ -61,7 +63,8 @@ class URLRequestJobManager {
|
| // parameter may be null to clear any existing association. Returns the
|
| // previously registered protocol factory if any.
|
| URLRequest::ProtocolFactory* RegisterProtocolFactory(
|
| - const std::string& scheme, URLRequest::ProtocolFactory* factory);
|
| + const std::string& scheme,
|
| + URLRequest::ProtocolFactory* factory);
|
|
|
| // Register/unregister a request interceptor.
|
| void RegisterRequestInterceptor(URLRequest::Interceptor* interceptor);
|
| @@ -104,12 +107,12 @@ class URLRequestJobManager {
|
| mutable bool allowed_thread_initialized_;
|
| #endif
|
|
|
| - mutable base::Lock lock_;
|
| - FactoryMap factories_;
|
| - InterceptorList interceptors_;
|
| + mutable base::Lock lock_;
|
| + FactoryMap factories_;
|
| + InterceptorList interceptors_;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(URLRequestJobManager);
|
| -};
|
| + DISALLOW_COPY_AND_ASSIGN(URLRequestJobManager);
|
| + };
|
|
|
| } // namespace net
|
|
|
|
|