| Index: Source/core/css/CSSStyleSheet.cpp
|
| diff --git a/Source/core/css/CSSStyleSheet.cpp b/Source/core/css/CSSStyleSheet.cpp
|
| index f4ceccaa9341adc36ab1caf1545b55212efc58a4..c90953a332d186d777ef2af80757b3a0b9666bf3 100644
|
| --- a/Source/core/css/CSSStyleSheet.cpp
|
| +++ b/Source/core/css/CSSStyleSheet.cpp
|
| @@ -61,14 +61,14 @@ private:
|
| StyleSheetCSSRuleList(CSSStyleSheet* sheet) : m_styleSheet(sheet) { }
|
|
|
| #if !ENABLE(OILPAN)
|
| - virtual void ref() override { m_styleSheet->ref(); }
|
| - virtual void deref() override { m_styleSheet->deref(); }
|
| + void ref() override { m_styleSheet->ref(); }
|
| + void deref() override { m_styleSheet->deref(); }
|
| #endif
|
|
|
| - virtual unsigned length() const override { return m_styleSheet->length(); }
|
| - virtual CSSRule* item(unsigned index) const override { return m_styleSheet->item(index); }
|
| + unsigned length() const override { return m_styleSheet->length(); }
|
| + CSSRule* item(unsigned index) const override { return m_styleSheet->item(index); }
|
|
|
| - virtual CSSStyleSheet* styleSheet() const override { return m_styleSheet; }
|
| + CSSStyleSheet* styleSheet() const override { return m_styleSheet; }
|
|
|
| RawPtrWillBeMember<CSSStyleSheet> m_styleSheet;
|
| };
|
|
|