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

Unified Diff: Source/platform/geometry/FloatPolygon.h

Issue 858663002: Fix template angle bracket syntax in platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 11 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/platform/fonts/win/FontCacheSkiaWin.cpp ('k') | Source/platform/geometry/FloatPolygon.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/geometry/FloatPolygon.h
diff --git a/Source/platform/geometry/FloatPolygon.h b/Source/platform/geometry/FloatPolygon.h
index 875c321633d76ffcf77523f63df1d8186b0fb55a..10f6cb8f5b430d548aa918f93ca7105f24b9a01a 100644
--- a/Source/platform/geometry/FloatPolygon.h
+++ b/Source/platform/geometry/FloatPolygon.h
@@ -49,7 +49,7 @@ template <class> struct ValueToString;
class PLATFORM_EXPORT FloatPolygon {
public:
- FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule);
+ FloatPolygon(PassOwnPtr<Vector<FloatPoint>> vertices, WindRule fillRule);
const FloatPoint& vertexAt(unsigned index) const { return (*m_vertices)[index]; }
unsigned numberOfVertices() const { return m_vertices->size(); }
@@ -71,7 +71,7 @@ private:
bool containsNonZero(const FloatPoint&) const;
bool containsEvenOdd(const FloatPoint&) const;
- OwnPtr<Vector<FloatPoint> > m_vertices;
+ OwnPtr<Vector<FloatPoint>> m_vertices;
WindRule m_fillRule;
FloatRect m_boundingBox;
bool m_empty;
« no previous file with comments | « Source/platform/fonts/win/FontCacheSkiaWin.cpp ('k') | Source/platform/geometry/FloatPolygon.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698