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

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

Issue 1709033002: Bring back ref to element in ClassList and RelList (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added virtual call to DOMTokenList 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 | « no previous file | third_party/WebKit/Source/core/html/ClassList.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/DOMTokenList.h
diff --git a/third_party/WebKit/Source/core/dom/DOMTokenList.h b/third_party/WebKit/Source/core/dom/DOMTokenList.h
index f0d36611b555dce17dedd76493f32a47a770ec55..84ebc86ada16fe32268d970262b14829c04a3152 100644
--- a/third_party/WebKit/Source/core/dom/DOMTokenList.h
+++ b/third_party/WebKit/Source/core/dom/DOMTokenList.h
@@ -58,6 +58,10 @@ public:
}
virtual ~DOMTokenList() { }
+#if !ENABLE(OILPAN)
+ virtual void ref() { RefCounted<DOMTokenList>::ref(); }
+ virtual void deref() { RefCounted<DOMTokenList>::deref(); }
+#endif
virtual unsigned length() const { return m_tokens.size(); }
virtual const AtomicString item(unsigned index) const;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/ClassList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698