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

Unified Diff: third_party/WebKit/Source/core/dom/MutationObserver.cpp

Issue 2390543002: Reflow comments in core/dom/. (Closed)
Patch Set: Reformat comments in core/dom/. Created 4 years, 2 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/dom/MutationObserver.cpp
diff --git a/third_party/WebKit/Source/core/dom/MutationObserver.cpp b/third_party/WebKit/Source/core/dom/MutationObserver.cpp
index 9bbac6dc1c92b45519690460b39e8438ac7cd302..2a7bf567dc3cca5f1b6fb62367bae8e7765d205e 100644
--- a/third_party/WebKit/Source/core/dom/MutationObserver.cpp
+++ b/third_party/WebKit/Source/core/dom/MutationObserver.cpp
@@ -219,8 +219,9 @@ void MutationObserver::cancelInspectorAsyncTasks() {
void MutationObserver::deliver() {
DCHECK(!shouldBeSuspended());
- // Calling clearTransientRegistrations() can modify m_registrations, so it's necessary
- // to make a copy of the transient registrations before operating on them.
+ // Calling clearTransientRegistrations() can modify m_registrations, so it's
+ // necessary to make a copy of the transient registrations before operating on
+ // them.
HeapVector<Member<MutationObserverRegistration>, 1> transientRegistrations;
for (auto& registration : m_registrations) {
if (registration->hasTransientRegistrations())

Powered by Google App Engine
This is Rietveld 408576698