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

Unified Diff: Source/core/css/parser/CSSGrammar.y

Issue 993713002: Fix template angle bracket syntax in CSS subdirs (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/parser/BisonCSSTokenizer.h ('k') | Source/core/css/parser/CSSParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/parser/CSSGrammar.y
diff --git a/Source/core/css/parser/CSSGrammar.y b/Source/core/css/parser/CSSGrammar.y
index f1d7c559ae1398298782d4a327e1ac2c56d7a46f..ac22228587317fc2e55e75a39ecff29040f2c3b1 100644
--- a/Source/core/css/parser/CSSGrammar.y
+++ b/Source/core/css/parser/CSSGrammar.y
@@ -77,11 +77,11 @@ using namespace HTMLNames;
// The content of the three below HeapVectors are guaranteed to be kept alive by
// the corresponding m_parsedRules, m_floatingMediaQueryExpList, and m_parsedKeyFrames
// lists in BisonCSSParser.h.
- WillBeHeapVector<RefPtrWillBeMember<StyleRuleBase> >* ruleList;
- WillBeHeapVector<OwnPtrWillBeMember<MediaQueryExp> >* mediaQueryExpList;
- WillBeHeapVector<RefPtrWillBeMember<StyleRuleKeyframe> >* keyframeRuleList;
+ WillBeHeapVector<RefPtrWillBeMember<StyleRuleBase>>* ruleList;
+ WillBeHeapVector<OwnPtrWillBeMember<MediaQueryExp>>* mediaQueryExpList;
+ WillBeHeapVector<RefPtrWillBeMember<StyleRuleKeyframe>>* keyframeRuleList;
CSSParserSelector* selector;
- Vector<OwnPtr<CSSParserSelector> >* selectorList;
+ Vector<OwnPtr<CSSParserSelector>>* selectorList;
CSSSelector::MarginBoxType marginBox;
CSSSelector::Relation relation;
CSSSelector::AttributeMatchType attributeMatchType;
@@ -1442,7 +1442,7 @@ pseudo:
$$ = parser->createFloatingSelector();
$$->setMatch(CSSSelector::PseudoClass);
- Vector<OwnPtr<CSSParserSelector> > selectorVector;
+ Vector<OwnPtr<CSSParserSelector>> selectorVector;
selectorVector.append(parser->sinkFloatingSelector($4));
$$->adoptSelectorVector(selectorVector);
« no previous file with comments | « Source/core/css/parser/BisonCSSTokenizer.h ('k') | Source/core/css/parser/CSSParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698