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

Unified Diff: Source/core/xml/XPathFunctions.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/XPathExpressionNode.h ('k') | Source/core/xml/XPathFunctions.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathFunctions.h
diff --git a/Source/core/xml/XPathFunctions.h b/Source/core/xml/XPathFunctions.h
index 0ecb1fd0a531db79375a3bd100d729806cbd38b8..85365e6420364aff1659cb4d3e9205526f8c0d3c 100644
--- a/Source/core/xml/XPathFunctions.h
+++ b/Source/core/xml/XPathFunctions.h
@@ -35,7 +35,7 @@ namespace XPath {
class Function : public Expression {
public:
- void setArguments(WillBeHeapVector<OwnPtrWillBeMember<Expression> >&);
+ void setArguments(WillBeHeapVector<OwnPtrWillBeMember<Expression>>&);
void setName(const String& name) { m_name = name; }
protected:
@@ -49,7 +49,7 @@ private:
};
Function* createFunction(const String& name);
-Function* createFunction(const String& name, WillBeHeapVector<OwnPtrWillBeMember<Expression> >&);
+Function* createFunction(const String& name, WillBeHeapVector<OwnPtrWillBeMember<Expression>>&);
} // namespace XPath
« no previous file with comments | « Source/core/xml/XPathExpressionNode.h ('k') | Source/core/xml/XPathFunctions.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698