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

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

Issue 1006723003: Fix template angle bracket syntax in dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « Source/core/dom/MutationObserver.h ('k') | Source/core/dom/MutationObserverRegistration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/MutationObserver.cpp
diff --git a/Source/core/dom/MutationObserver.cpp b/Source/core/dom/MutationObserver.cpp
index 5f5b1c96366be3b62f8479d1172e06be393b4a32..46905e3e15366b3b0507b493c7c416f052d30ba2 100644
--- a/Source/core/dom/MutationObserver.cpp
+++ b/Source/core/dom/MutationObserver.cpp
@@ -207,9 +207,9 @@ void MutationObserver::setHasTransientRegistration()
activateObserver(this);
}
-WillBeHeapHashSet<RawPtrWillBeMember<Node> > MutationObserver::getObservedNodes() const
+WillBeHeapHashSet<RawPtrWillBeMember<Node>> MutationObserver::getObservedNodes() const
{
- WillBeHeapHashSet<RawPtrWillBeMember<Node> > observedNodes;
+ WillBeHeapHashSet<RawPtrWillBeMember<Node>> observedNodes;
for (const auto& registration : m_registrations)
registration->addRegistrationNodesToSet(observedNodes);
return observedNodes;
« no previous file with comments | « Source/core/dom/MutationObserver.h ('k') | Source/core/dom/MutationObserverRegistration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698