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

Unified Diff: third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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: 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

Powered by Google App Engine
This is Rietveld 408576698