Index: third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc |
diff --git a/third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc b/third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc |
index 400934252d4d1200e9588e6e3acca68d1ac1453c..21dbac7451735bd69f7a1189e7fc5780b77d3d7e 100644 |
--- a/third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc |
+++ b/third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc |
@@ -73,8 +73,8 @@ void WebURLLoaderMock::ServeAsynchronousRequest( |
WebURLRequest WebURLLoaderMock::ServeRedirect( |
const WebURLRequest& request, |
const WebURLResponse& redirectResponse) { |
- KURL redirectURL( |
- ParsedURLString, redirectResponse.httpHeaderField("Location")); |
+ KURL redirectURL(ParsedURLString, |
+ redirectResponse.httpHeaderField("Location")); |
WebURLRequest newRequest(redirectURL); |
newRequest.setFirstPartyForCookies(redirectURL); |
@@ -112,8 +112,8 @@ void WebURLLoaderMock::loadSynchronously(const WebURLRequest& request, |
int64_t& encoded_data_length, |
int64_t& encoded_body_length) { |
if (factory_->IsMockedURL(request.url())) { |
- factory_->LoadSynchronously(request, &response, &error, &data, |
- &encoded_data_length); |
+ factory_->LoadSynchronously(request, &response, &error, &data, |
+ &encoded_data_length); |
return; |
} |
assertFallbackLoaderAvailability(request.url(), default_loader_.get()); |
@@ -170,4 +170,4 @@ WeakPtr<WebURLLoaderMock> WebURLLoaderMock::GetWeakPtr() { |
return weak_factory_.createWeakPtr(); |
} |
-} // namespace blink |
+} // namespace blink |