Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(420)

Unified Diff: net/url_request/url_request_job_factory_impl.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698