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

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

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix Created 6 years, 2 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/SimpleFontData.h ('k') | Source/platform/graphics/BitmapImage.h » ('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 62bbe6df29f18fbca7b31ea3a331809293b309dd..875c321633d76ffcf77523f63df1d8186b0fb55a 100644
--- a/Source/platform/geometry/FloatPolygon.h
+++ b/Source/platform/geometry/FloatPolygon.h
@@ -98,13 +98,13 @@ public:
class PLATFORM_EXPORT FloatPolygonEdge : public VertexPair {
friend class FloatPolygon;
public:
- virtual const FloatPoint& vertex1() const OVERRIDE
+ virtual const FloatPoint& vertex1() const override
{
ASSERT(m_polygon);
return m_polygon->vertexAt(m_vertexIndex1);
}
- virtual const FloatPoint& vertex2() const OVERRIDE
+ virtual const FloatPoint& vertex2() const override
{
ASSERT(m_polygon);
return m_polygon->vertexAt(m_vertexIndex2);
« no previous file with comments | « Source/platform/fonts/SimpleFontData.h ('k') | Source/platform/graphics/BitmapImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698