| Index: third_party/WebKit/Source/core/html/ClassList.h
|
| diff --git a/third_party/WebKit/Source/core/html/ClassList.h b/third_party/WebKit/Source/core/html/ClassList.h
|
| index 146550b48f3fd564696768a2fb7d876d2851863b..e0a02f07c941a4052bfb9bb320a9cf7f17de9beb 100644
|
| --- a/third_party/WebKit/Source/core/html/ClassList.h
|
| +++ b/third_party/WebKit/Source/core/html/ClassList.h
|
| @@ -52,6 +52,10 @@ public:
|
| void clearValueForQuirksMode() { m_classNamesForQuirksMode = nullptr; }
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
| +#if !ENABLE(OILPAN)
|
| + void ref() override { m_element->ref(); }
|
| + void deref() override { m_element->deref(); }
|
| +#endif
|
|
|
| private:
|
| explicit ClassList(Element*);
|
|
|