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

Unified Diff: third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp

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/core/workers/DedicatedWorkerGlobalScope.cpp
diff --git a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
index 5fc05734936fa249acd88ca2016f789358835c15..43e905deae549bee8fdf739be5b09a5af0b69350 100644
--- a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
+++ b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
@@ -90,9 +90,8 @@ void DedicatedWorkerGlobalScope::postMessage(
const MessagePortArray& ports,
ExceptionState& exceptionState) {
// Disentangle the port in preparation for sending it to the remote context.
- MessagePortChannelArray channels =
- MessagePort::disentanglePorts(scriptState->getExecutionContext(), ports,
- exceptionState);
+ MessagePortChannelArray channels = MessagePort::disentanglePorts(
+ scriptState->getExecutionContext(), ports, exceptionState);
if (exceptionState.hadException())
return;
workerObjectProxy().postMessageToWorkerObject(std::move(message),

Powered by Google App Engine
This is Rietveld 408576698