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

Unified Diff: Source/core/layout/ClipPathOperation.h

Issue 1231363003: Fix virtual/override/final usage in Source/core/layout/. (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 | « no previous file | Source/core/layout/FloatingObjects.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/ClipPathOperation.h
diff --git a/Source/core/layout/ClipPathOperation.h b/Source/core/layout/ClipPathOperation.h
index 1e1d2e8754fa342438e149019b503af6e1727b31..75d23d31999b9c5c69ee6906a47904628766793b 100644
--- a/Source/core/layout/ClipPathOperation.h
+++ b/Source/core/layout/ClipPathOperation.h
@@ -74,7 +74,7 @@ public:
const AtomicString& fragment() const { return m_fragment; }
private:
- virtual bool operator==(const ClipPathOperation& o) const override
+ bool operator==(const ClipPathOperation& o) const override
{
return isSameType(o) && m_url == static_cast<const ReferenceClipPathOperation&>(o).m_url;
}
@@ -113,7 +113,7 @@ public:
}
private:
- virtual bool operator==(const ClipPathOperation&) const override;
+ bool operator==(const ClipPathOperation&) const override;
ShapeClipPathOperation(PassRefPtr<BasicShape> shape)
: ClipPathOperation(SHAPE)
« no previous file with comments | « no previous file | Source/core/layout/FloatingObjects.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698