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

Unified Diff: third_party/WebKit/Source/core/html/RelList.cpp

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/html/RelList.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/RelList.cpp
diff --git a/third_party/WebKit/Source/core/html/RelList.cpp b/third_party/WebKit/Source/core/html/RelList.cpp
index a2406a14d2ffa1dabebc7337d4e5f29aa0bece92..841044640fe7e27aa626da547cf5f3a958228704 100644
--- a/third_party/WebKit/Source/core/html/RelList.cpp
+++ b/third_party/WebKit/Source/core/html/RelList.cpp
@@ -12,19 +12,7 @@ namespace blink {
using namespace HTMLNames;
-RelList::RelList(Element* element) : m_element(element) { }
-
-#if !ENABLE(OILPAN)
-void RelList::ref()
-{
- m_element->ref();
-}
-
-void RelList::deref()
-{
- m_element->deref();
-}
-#endif
+RelList::RelList(Element* element) : DOMTokenList(nullptr), m_element(element) { }
unsigned RelList::length() const
{
« no previous file with comments | « third_party/WebKit/Source/core/html/RelList.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698