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

Unified Diff: Source/core/dom/MutationObserverRegistration.h

Issue 313023004: Oilpan: Replace RefPtr to Node in MutationObserver-related classes with Oilpan transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: OwnPtrWillBeMember Created 6 years, 6 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 | « no previous file | Source/core/dom/MutationObserverRegistration.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/MutationObserverRegistration.h
diff --git a/Source/core/dom/MutationObserverRegistration.h b/Source/core/dom/MutationObserverRegistration.h
index 7af8e85137f256db9dd7511c2f99d56d5aaac400..386a65aa2300b7bbfd47de20bb0e2740466cbc55 100644
--- a/Source/core/dom/MutationObserverRegistration.h
+++ b/Source/core/dom/MutationObserverRegistration.h
@@ -71,8 +71,8 @@ private:
RefPtrWillBeMember<MutationObserver> m_observer;
RawPtrWillBeWeakMember<Node> m_registrationNode;
RefPtrWillBeMember<Node> m_registrationNodeKeepAlive;
- typedef HashSet<RefPtr<Node> > NodeHashSet;
- OwnPtr<NodeHashSet> m_transientRegistrationNodes;
+ typedef WillBeHeapHashSet<RefPtrWillBeMember<Node> > NodeHashSet;
+ OwnPtrWillBeMember<NodeHashSet> m_transientRegistrationNodes;
MutationObserverOptions m_options;
HashSet<AtomicString> m_attributeFilter;
« no previous file with comments | « no previous file | Source/core/dom/MutationObserverRegistration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698