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

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

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 10f6cb8f5b430d548aa918f93ca7105f24b9a01a..c44498f87f9f9431293e31058477850f6c64a805 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
+ const FloatPoint& vertex1() const override
{
ASSERT(m_polygon);
return m_polygon->vertexAt(m_vertexIndex1);
}
- virtual const FloatPoint& vertex2() const override
+ 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