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

Unified Diff: third_party/WebKit/Source/core/workers/InProcessWorkerBase.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/InProcessWorkerBase.cpp
diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
index 44736ce20c0e2fbd4ccbff9dbb14dcb20f45325e..c84c64a3182ecff01668ad5951cbee807ee23784 100644
--- a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
+++ b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
@@ -17,8 +17,7 @@
namespace blink {
InProcessWorkerBase::InProcessWorkerBase(ExecutionContext* context)
- : AbstractWorker(context),
- m_contextProxy(nullptr) {}
+ : AbstractWorker(context), m_contextProxy(nullptr) {}
InProcessWorkerBase::~InProcessWorkerBase() {
DCHECK(isMainThread());
@@ -33,9 +32,8 @@ void InProcessWorkerBase::postMessage(ScriptState* scriptState,
ExceptionState& exceptionState) {
DCHECK(m_contextProxy);
// 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;
m_contextProxy->postMessageToWorkerGlobalScope(std::move(message),

Powered by Google App Engine
This is Rietveld 408576698