Index: net/url_request/url_request_job_factory_impl.cc |
diff --git a/net/url_request/url_request_job_factory_impl.cc b/net/url_request/url_request_job_factory_impl.cc |
index f456da2798f57e2e7580992161afa8cdfb736ca9..25f8accbb8a556a6e7244f79cdd477b104924beb 100644 |
--- a/net/url_request/url_request_job_factory_impl.cc |
+++ b/net/url_request/url_request_job_factory_impl.cc |
@@ -11,7 +11,8 @@ |
namespace net { |
-URLRequestJobFactoryImpl::URLRequestJobFactoryImpl() {} |
+URLRequestJobFactoryImpl::URLRequestJobFactoryImpl() { |
+} |
URLRequestJobFactoryImpl::~URLRequestJobFactoryImpl() { |
STLDeleteValues(&protocol_handler_map_); |
@@ -53,7 +54,7 @@ bool URLRequestJobFactoryImpl::IsHandledProtocol( |
const std::string& scheme) const { |
DCHECK(CalledOnValidThread()); |
return ContainsKey(protocol_handler_map_, scheme) || |
- URLRequestJobManager::GetInstance()->SupportsScheme(scheme); |
+ URLRequestJobManager::GetInstance()->SupportsScheme(scheme); |
} |
bool URLRequestJobFactoryImpl::IsHandledURL(const GURL& url) const { |
@@ -71,8 +72,8 @@ bool URLRequestJobFactoryImpl::IsSafeRedirectTarget( |
// Error cases are safely handled. |
return true; |
} |
- ProtocolHandlerMap::const_iterator it = protocol_handler_map_.find( |
- location.scheme()); |
+ ProtocolHandlerMap::const_iterator it = |
+ protocol_handler_map_.find(location.scheme()); |
if (it == protocol_handler_map_.end()) { |
// Unhandled cases are safely handled. |
return true; |