Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Unified Diff: third_party/WebKit/Source/core/css/CSSRuleList.h

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSProperties.json5 ('k') | third_party/WebKit/Source/core/css/CSSValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698