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

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: 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..ac89dd85c84886946ec465c939e0b2e7774d84b5 100644
--- a/Source/core/dom/MutationObserverRegistration.h
+++ b/Source/core/dom/MutationObserverRegistration.h
@@ -71,7 +71,7 @@ private:
RefPtrWillBeMember<MutationObserver> m_observer;
RawPtrWillBeWeakMember<Node> m_registrationNode;
RefPtrWillBeMember<Node> m_registrationNodeKeepAlive;
- typedef HashSet<RefPtr<Node> > NodeHashSet;
+ typedef WillBeHeapHashSet<RefPtrWillBeMember<Node> > NodeHashSet;
OwnPtr<NodeHashSet> m_transientRegistrationNodes;
haraken 2014/06/04 07:25:33 This should be OwnPtrWillBeMember<NodeHashSet>. O
sof 2014/06/04 07:26:22 If we want to lazily instantiate the hash set, cou
zerny-chromium 2014/06/04 07:45:59 I'm surprised that this does not trigger a compile
tkent 2014/06/04 09:20:23 Thank you for pointing this out. Yeah, I missed it
MutationObserverOptions m_options;
« 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