| Index: third_party/WebKit/Source/core/css/CSSRuleList.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSRuleList.h b/third_party/WebKit/Source/core/css/CSSRuleList.h
|
| index 51e6eb79d33ac2d512ef9bec9364ad69072682c8..740ed010e1991a22a1754886f51808095aa57934 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSRuleList.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSRuleList.h
|
| @@ -86,9 +86,13 @@ class LiveCSSRuleList final : public CSSRuleList {
|
| private:
|
| LiveCSSRuleList(Rule* rule) : m_rule(rule) {}
|
|
|
| + /* DO NOT SUBMIT - merge conflict marker.
|
| + * Please spell |length| in 2 places below (not |GetLength|). */
|
| unsigned length() const override { return m_rule->length(); }
|
| CSSRule* item(unsigned index) const override { return m_rule->item(index); }
|
| CSSStyleSheet* styleSheet() const override {
|
| + /* DO NOT SUBMIT - merge conflict marker.
|
| + * Please spell |parentStyleSheet| below (not |ParentStyleSheet|). */
|
| return m_rule->parentStyleSheet();
|
| }
|
|
|
|
|