| Index: Source/core/css/CSSStyleSheet.cpp
|
| diff --git a/Source/core/css/CSSStyleSheet.cpp b/Source/core/css/CSSStyleSheet.cpp
|
| index fa9b7746e35b5be26ed8a6d80b1616a561e76065..705d3283da8707459b4002a670ea53176e068975 100644
|
| --- a/Source/core/css/CSSStyleSheet.cpp
|
| +++ b/Source/core/css/CSSStyleSheet.cpp
|
| @@ -45,14 +45,14 @@
|
|
|
| namespace blink {
|
|
|
| -class StyleSheetCSSRuleList FINAL : public CSSRuleList {
|
| +class StyleSheetCSSRuleList final : public CSSRuleList {
|
| public:
|
| static PassOwnPtrWillBeRawPtr<StyleSheetCSSRuleList> create(CSSStyleSheet* sheet)
|
| {
|
| return adoptPtrWillBeNoop(new StyleSheetCSSRuleList(sheet));
|
| }
|
|
|
| - virtual void trace(Visitor* visitor) OVERRIDE
|
| + virtual void trace(Visitor* visitor) override
|
| {
|
| visitor->trace(m_styleSheet);
|
| CSSRuleList::trace(visitor);
|
| @@ -62,14 +62,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(); }
|
| + virtual void ref() override { m_styleSheet->ref(); }
|
| + virtual 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); }
|
| + virtual unsigned length() const override { return m_styleSheet->length(); }
|
| + virtual CSSRule* item(unsigned index) const override { return m_styleSheet->item(index); }
|
|
|
| - virtual CSSStyleSheet* styleSheet() const OVERRIDE { return m_styleSheet; }
|
| + virtual CSSStyleSheet* styleSheet() const override { return m_styleSheet; }
|
|
|
| RawPtrWillBeMember<CSSStyleSheet> m_styleSheet;
|
| };
|
|
|