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

Unified Diff: third_party/WebKit/Source/core/dom/ElementRareData.h

Issue 1629403003: Merge DOMSettableTokensList into DOMTokensList (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed non-oilpan inheritance Created 4 years, 10 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 | « third_party/WebKit/Source/core/dom/DOMTokenList.idl ('k') | third_party/WebKit/Source/core/dom/Node.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/ElementRareData.h
diff --git a/third_party/WebKit/Source/core/dom/ElementRareData.h b/third_party/WebKit/Source/core/dom/ElementRareData.h
index 050f4c63072199b6c2968ff701412a0ba0a66ef7..d09bff66af84005a95faa308b3e7c94292e0ac52 100644
--- a/third_party/WebKit/Source/core/dom/ElementRareData.h
+++ b/third_party/WebKit/Source/core/dom/ElementRareData.h
@@ -88,7 +88,7 @@ public:
void clearComputedStyle() { m_computedStyle = nullptr; }
ClassList* classList() const { return m_classList.get(); }
- void setClassList(PassOwnPtrWillBeRawPtr<ClassList> classList) { m_classList = classList; }
+ void setClassList(PassRefPtrWillBeRawPtr<ClassList> classList) { m_classList = classList; }
void clearClassListValueForQuirksMode()
{
if (!m_classList)
@@ -145,8 +145,8 @@ private:
IntSize m_savedLayerScrollOffset;
OwnPtrWillBeMember<DatasetDOMStringMap> m_dataset;
- OwnPtrWillBeMember<ClassList> m_classList;
OwnPtrWillBeMember<ElementShadow> m_shadow;
+ RefPtrWillBeMember<ClassList> m_classList;
OwnPtrWillBeMember<NamedNodeMap> m_attributeMap;
OwnPtrWillBeMember<AttrNodeList> m_attrNodeList;
OwnPtrWillBeMember<InlineCSSStyleDeclaration> m_cssomWrapper;
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMTokenList.idl ('k') | third_party/WebKit/Source/core/dom/Node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698