| 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
|
| {
|
|
|