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

Unified Diff: Source/core/xml/XPathStep.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/XPathPredicate.cpp ('k') | Source/core/xml/XPathStep.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathStep.h
diff --git a/Source/core/xml/XPathStep.h b/Source/core/xml/XPathStep.h
index 0b649866471e5c046079dc1bc38aef3cc8f5f3bc..7af718fcacdf84a009925f69ffb97c8d29887fc5 100644
--- a/Source/core/xml/XPathStep.h
+++ b/Source/core/xml/XPathStep.h
@@ -81,8 +81,8 @@ public:
Kind kind() const { return m_kind; }
const AtomicString& data() const { return m_data; }
const AtomicString& namespaceURI() const { return m_namespaceURI; }
- WillBeHeapVector<OwnPtrWillBeMember<Predicate> >& mergedPredicates() { return m_mergedPredicates; }
- const WillBeHeapVector<OwnPtrWillBeMember<Predicate> >& mergedPredicates() const { return m_mergedPredicates; }
+ WillBeHeapVector<OwnPtrWillBeMember<Predicate>>& mergedPredicates() { return m_mergedPredicates; }
+ const WillBeHeapVector<OwnPtrWillBeMember<Predicate>>& mergedPredicates() const { return m_mergedPredicates; }
private:
Kind m_kind;
@@ -90,11 +90,11 @@ public:
AtomicString m_namespaceURI;
// When possible, we merge some or all predicates with node test for better performance.
- WillBeHeapVector<OwnPtrWillBeMember<Predicate> > m_mergedPredicates;
+ WillBeHeapVector<OwnPtrWillBeMember<Predicate>> m_mergedPredicates;
};
Step(Axis, const NodeTest&);
- Step(Axis, const NodeTest&, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >&);
+ Step(Axis, const NodeTest&, WillBeHeapVector<OwnPtrWillBeMember<Predicate>>&);
virtual ~Step();
DECLARE_VIRTUAL_TRACE();
@@ -116,7 +116,7 @@ private:
Axis m_axis;
OwnPtrWillBeMember<NodeTest> m_nodeTest;
- WillBeHeapVector<OwnPtrWillBeMember<Predicate> > m_predicates;
+ WillBeHeapVector<OwnPtrWillBeMember<Predicate>> m_predicates;
};
void optimizeStepPair(Step*, Step*, bool& dropSecondStep);
« no previous file with comments | « Source/core/xml/XPathPredicate.cpp ('k') | Source/core/xml/XPathStep.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698