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

Unified Diff: Source/core/css/CSSKeyframesRule.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/CSSImageGeneratorValue.h ('k') | Source/core/css/CSSPropertySourceData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSKeyframesRule.h
diff --git a/Source/core/css/CSSKeyframesRule.h b/Source/core/css/CSSKeyframesRule.h
index 7d168c4160a1550c16162ce2720c95376058d420..be707cc713224bf57839cf84e570f6a1fe1d398a 100644
--- a/Source/core/css/CSSKeyframesRule.h
+++ b/Source/core/css/CSSKeyframesRule.h
@@ -43,7 +43,7 @@ public:
~StyleRuleKeyframes();
- const WillBeHeapVector<RefPtrWillBeMember<StyleRuleKeyframe> >& keyframes() const { return m_keyframes; }
+ const WillBeHeapVector<RefPtrWillBeMember<StyleRuleKeyframe>>& keyframes() const { return m_keyframes; }
void parserAppendKeyframe(PassRefPtrWillBeRawPtr<StyleRuleKeyframe>);
void wrapperAppendKeyframe(PassRefPtrWillBeRawPtr<StyleRuleKeyframe>);
@@ -68,7 +68,7 @@ private:
StyleRuleKeyframes();
explicit StyleRuleKeyframes(const StyleRuleKeyframes&);
- WillBeHeapVector<RefPtrWillBeMember<StyleRuleKeyframe> > m_keyframes;
+ WillBeHeapVector<RefPtrWillBeMember<StyleRuleKeyframe>> m_keyframes;
AtomicString m_name;
unsigned m_version : 31;
unsigned m_isPrefixed : 1;
@@ -115,7 +115,7 @@ private:
virtual CSSRule::Type type() const override { return KEYFRAMES_RULE; }
RefPtrWillBeMember<StyleRuleKeyframes> m_keyframesRule;
- mutable WillBeHeapVector<RefPtrWillBeMember<CSSKeyframeRule> > m_childRuleCSSOMWrappers;
+ mutable WillBeHeapVector<RefPtrWillBeMember<CSSKeyframeRule>> m_childRuleCSSOMWrappers;
mutable OwnPtrWillBeMember<CSSRuleList> m_ruleListCSSOMWrapper;
bool m_isPrefixed;
};
« no previous file with comments | « Source/core/css/CSSImageGeneratorValue.h ('k') | Source/core/css/CSSPropertySourceData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698