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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerThread.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/core/workers/WorkerThread.cpp
diff --git a/third_party/WebKit/Source/core/workers/WorkerThread.cpp b/third_party/WebKit/Source/core/workers/WorkerThread.cpp
index 783a153fca69184efdc53929e931e0f396df91d3..a423f80d4b46631aa4d7b73be9b88ae3848e23a6 100644
--- a/third_party/WebKit/Source/core/workers/WorkerThread.cpp
+++ b/third_party/WebKit/Source/core/workers/WorkerThread.cpp
@@ -112,9 +112,10 @@ void WorkerThread::start(std::unique_ptr<WorkerThreadStartupData> startupData) {
m_requestedToStart = true;
workerBackingThread().backingThread().postTask(
- BLINK_FROM_HERE, crossThreadBind(&WorkerThread::initializeOnWorkerThread,
- crossThreadUnretained(this),
- WTF::passed(std::move(startupData))));
+ BLINK_FROM_HERE,
+ crossThreadBind(&WorkerThread::initializeOnWorkerThread,
+ crossThreadUnretained(this),
+ WTF::passed(std::move(startupData))));
}
void WorkerThread::terminate() {
@@ -193,9 +194,10 @@ void WorkerThread::postTask(const WebTraceLocation& location,
if (isInShutdown())
return;
workerBackingThread().backingThread().postTask(
- location, crossThreadBind(&WorkerThread::performTaskOnWorkerThread,
- crossThreadUnretained(this),
- WTF::passed(std::move(task))));
+ location,
+ crossThreadBind(&WorkerThread::performTaskOnWorkerThread,
+ crossThreadUnretained(this),
+ WTF::passed(std::move(task))));
}
void WorkerThread::appendDebuggerTask(

Powered by Google App Engine
This is Rietveld 408576698