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

Unified Diff: Source/core/dom/shadow/ElementShadow.h

Issue 277213004: Oilpan: add transition types to shadow DOM supporting objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use DISALLOW_ALLOCATION() instead Created 6 years, 7 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: Source/core/dom/shadow/ElementShadow.h
diff --git a/Source/core/dom/shadow/ElementShadow.h b/Source/core/dom/shadow/ElementShadow.h
index da98542c4d9e265b738f13e8cbf885be27d97a24..ded0ac03cd37c957e23ad2f90734d275c16b6151 100644
--- a/Source/core/dom/shadow/ElementShadow.h
+++ b/Source/core/dom/shadow/ElementShadow.h
@@ -89,7 +89,7 @@ private:
bool needsSelectFeatureSet() const { return m_needsSelectFeatureSet; }
void setNeedsSelectFeatureSet() { m_needsSelectFeatureSet = true; }
- typedef HashMap<const Node*, DestinationInsertionPoints> NodeToDestinationInsertionPoints;
+ typedef WillBeHeapHashMap<RawPtrWillBeMember<Node>, DestinationInsertionPoints> NodeToDestinationInsertionPoints;
haraken 2014/05/12 13:38:35 Ditto. We want to keep const.
NodeToDestinationInsertionPoints m_nodeToInsertionPoints;
SelectRuleFeatureSet m_selectFeatures;

Powered by Google App Engine
This is Rietveld 408576698