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

Unified Diff: third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.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/websockets/WorkerWebSocketChannel.cpp
diff --git a/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.cpp b/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.cpp
index 6ca0b4cac1e199de31bd10d98440f3ac678ec8b2..227290d8afff5fc7114c762698c2c7408b32605f 100644
--- a/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.cpp
+++ b/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.cpp
@@ -244,8 +244,9 @@ static void workerGlobalScopeDidConnect(Bridge* bridge,
void Peer::didConnect(const String& subprotocol, const String& extensions) {
DCHECK(isMainThread());
m_loaderProxy->postTaskToWorkerGlobalScope(
- BLINK_FROM_HERE, crossThreadBind(&workerGlobalScopeDidConnect, m_bridge,
- subprotocol, extensions));
+ BLINK_FROM_HERE,
+ crossThreadBind(&workerGlobalScopeDidConnect, m_bridge, subprotocol,
+ extensions));
}
static void workerGlobalScopeDidReceiveTextMessage(Bridge* bridge,
@@ -257,8 +258,9 @@ static void workerGlobalScopeDidReceiveTextMessage(Bridge* bridge,
void Peer::didReceiveTextMessage(const String& payload) {
DCHECK(isMainThread());
m_loaderProxy->postTaskToWorkerGlobalScope(
- BLINK_FROM_HERE, crossThreadBind(&workerGlobalScopeDidReceiveTextMessage,
- m_bridge, payload));
+ BLINK_FROM_HERE,
+ crossThreadBind(&workerGlobalScopeDidReceiveTextMessage, m_bridge,
+ payload));
}
static void workerGlobalScopeDidReceiveBinaryMessage(
@@ -449,8 +451,9 @@ void Bridge::fail(const String& reason,
std::unique_ptr<SourceLocation> location) {
DCHECK(m_peer);
m_loaderProxy->postTaskToLoader(
- BLINK_FROM_HERE, createCrossThreadTask(&Peer::fail, m_peer, reason, level,
- WTF::passed(location->clone())));
+ BLINK_FROM_HERE,
+ createCrossThreadTask(&Peer::fail, m_peer, reason, level,
+ WTF::passed(location->clone())));
}
void Bridge::disconnect() {

Powered by Google App Engine
This is Rietveld 408576698