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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/FetchEvent.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) 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/modules/serviceworkers/FetchEvent.cpp
diff --git a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.cpp b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.cpp
index 8f4f9a01776170ab3cd3d5a5a4dedf2b40072320..47a17ba084cadb90b59d34d38283585166d9269c 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.cpp
+++ b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.cpp
@@ -114,9 +114,10 @@ void FetchEvent::onNavigationPreloadResponse(
DCHECK(m_preloadResponseProperty);
ScriptState::Scope scope(scriptState);
FetchResponseData* responseData = FetchResponseData::createWithBuffer(
- new BodyStreamBuffer(scriptState, new BytesConsumerForDataConsumerHandle(
- scriptState->getExecutionContext(),
- std::move(dataConsumeHandle))));
+ new BodyStreamBuffer(scriptState,
+ new BytesConsumerForDataConsumerHandle(
+ scriptState->getExecutionContext(),
+ std::move(dataConsumeHandle))));
Vector<KURL> urlList(1);
urlList[0] = response->url();
responseData->setURLList(urlList);

Powered by Google App Engine
This is Rietveld 408576698