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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerGlobalScope.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/WorkerGlobalScope.cpp
diff --git a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
index bceb03e11d6cca630f91c6af279bd1ae2e3eb847..9ddb890f1bd02a44ba9730f9e2a6169a099f1511 100644
--- a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
+++ b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
@@ -133,7 +133,8 @@ void WorkerGlobalScope::exceptionUnhandled(int exceptionId) {
void WorkerGlobalScope::registerEventListener(
V8AbstractEventListener* eventListener) {
// TODO(sof): remove once crbug.com/677654 has been diagnosed.
- CHECK(&ThreadState::fromObject(this)->heap() == &ThreadState::fromObject(eventListener)->heap());
+ CHECK(&ThreadState::fromObject(this)->heap() ==
+ &ThreadState::fromObject(eventListener)->heap());
bool newEntry = m_eventListeners.insert(eventListener).isNewEntry;
CHECK(newEntry);
}

Powered by Google App Engine
This is Rietveld 408576698