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

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

Issue 989173003: Fix template angle bracket syntax in css (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « Source/core/css/CSSPropertySourceData.h ('k') | Source/core/css/CSSSegmentedFontFace.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSRuleList.h
diff --git a/Source/core/css/CSSRuleList.h b/Source/core/css/CSSRuleList.h
index 6fcdd62446c226efbfa4069180e5fccc64586cb6..638b36046c8f7b864c3253cf94a77785c162db55 100644
--- a/Source/core/css/CSSRuleList.h
+++ b/Source/core/css/CSSRuleList.h
@@ -68,7 +68,7 @@ public:
virtual void deref() override;
#endif
- WillBeHeapVector<RefPtrWillBeMember<CSSRule> >& rules() { return m_rules; }
+ WillBeHeapVector<RefPtrWillBeMember<CSSRule>>& rules() { return m_rules; }
virtual CSSStyleSheet* styleSheet() const override { return 0; }
@@ -81,7 +81,7 @@ private:
virtual unsigned length() const override { return m_rules.size(); }
virtual CSSRule* item(unsigned index) const override { return index < m_rules.size() ? m_rules[index].get() : 0; }
- WillBeHeapVector<RefPtrWillBeMember<CSSRule> > m_rules;
+ WillBeHeapVector<RefPtrWillBeMember<CSSRule>> m_rules;
#if !ENABLE(OILPAN)
unsigned m_refCount;
#endif
« no previous file with comments | « Source/core/css/CSSPropertySourceData.h ('k') | Source/core/css/CSSSegmentedFontFace.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698