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

Unified Diff: Source/core/xml/XPathParser.h

Issue 968293002: Fix template angle bracket syntax in xml (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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/xml/XPathNodeSet.cpp ('k') | Source/core/xml/XPathParser.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathParser.h
diff --git a/Source/core/xml/XPathParser.h b/Source/core/xml/XPathParser.h
index f0b01a9bf53ef015cd4b1a4ba4ed4f1ed0293bae..c02a019a21f4f1f1e47e47d13f5384c5af6abd01 100644
--- a/Source/core/xml/XPathParser.h
+++ b/Source/core/xml/XPathParser.h
@@ -79,11 +79,11 @@ public:
void registerParseNode(ParseNode*);
void unregisterParseNode(ParseNode*);
- void registerPredicateVector(WillBeHeapVector<OwnPtrWillBeMember<Predicate> >*);
- void deletePredicateVector(WillBeHeapVector<OwnPtrWillBeMember<Predicate> >*);
+ void registerPredicateVector(WillBeHeapVector<OwnPtrWillBeMember<Predicate>>*);
+ void deletePredicateVector(WillBeHeapVector<OwnPtrWillBeMember<Predicate>>*);
- void registerExpressionVector(WillBeHeapVector<OwnPtrWillBeMember<Expression> >*);
- void deleteExpressionVector(WillBeHeapVector<OwnPtrWillBeMember<Expression> >*);
+ void registerExpressionVector(WillBeHeapVector<OwnPtrWillBeMember<Expression>>*);
+ void deleteExpressionVector(WillBeHeapVector<OwnPtrWillBeMember<Expression>>*);
void registerString(String*);
void deleteString(String*);
@@ -120,11 +120,11 @@ private:
#if !ENABLE(OILPAN)
HashSet<ParseNode*> m_parseNodes;
- HashSet<Vector<OwnPtr<Predicate> >*> m_predicateVectors;
- HashSet<Vector<OwnPtr<Expression> >*> m_expressionVectors;
- HashSet<OwnPtr<Step::NodeTest> > m_nodeTests;
+ HashSet<Vector<OwnPtr<Predicate>>*> m_predicateVectors;
+ HashSet<Vector<OwnPtr<Expression>>*> m_expressionVectors;
+ HashSet<OwnPtr<Step::NodeTest>> m_nodeTests;
#endif
- HashSet<OwnPtr<String> > m_strings;
+ HashSet<OwnPtr<String>> m_strings;
};
} // namespace XPath
« no previous file with comments | « Source/core/xml/XPathNodeSet.cpp ('k') | Source/core/xml/XPathParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698