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

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

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch 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/core/rendering/AutoTableLayout.h ('k') | Source/core/rendering/EllipsisBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/ClipPathOperation.h
diff --git a/Source/core/rendering/ClipPathOperation.h b/Source/core/rendering/ClipPathOperation.h
index 40aa41bbd6bbffbf3eb7392682669baa4e37f9a1..6fc84b9d5cb7023539177eb745575e3997a18dcc 100644
--- a/Source/core/rendering/ClipPathOperation.h
+++ b/Source/core/rendering/ClipPathOperation.h
@@ -63,7 +63,7 @@ protected:
OperationType m_type;
};
-class ReferenceClipPathOperation FINAL : public ClipPathOperation {
+class ReferenceClipPathOperation final : public ClipPathOperation {
public:
static PassRefPtr<ReferenceClipPathOperation> create(const String& url, const AtomicString& fragment)
{
@@ -74,7 +74,7 @@ public:
const AtomicString& fragment() const { return m_fragment; }
private:
- virtual bool operator==(const ClipPathOperation& o) const OVERRIDE
+ virtual bool operator==(const ClipPathOperation& o) const override
{
return isSameType(o) && m_url == static_cast<const ReferenceClipPathOperation&>(o).m_url;
}
@@ -92,7 +92,7 @@ private:
DEFINE_TYPE_CASTS(ReferenceClipPathOperation, ClipPathOperation, op, op->type() == ClipPathOperation::REFERENCE, op.type() == ClipPathOperation::REFERENCE);
-class ShapeClipPathOperation FINAL : public ClipPathOperation {
+class ShapeClipPathOperation final : public ClipPathOperation {
public:
static PassRefPtr<ShapeClipPathOperation> create(PassRefPtr<BasicShape> shape)
{
@@ -112,7 +112,7 @@ public:
}
private:
- virtual bool operator==(const ClipPathOperation&) const OVERRIDE;
+ virtual bool operator==(const ClipPathOperation&) const override;
ShapeClipPathOperation(PassRefPtr<BasicShape> shape)
: ClipPathOperation(SHAPE)
« no previous file with comments | « Source/core/rendering/AutoTableLayout.h ('k') | Source/core/rendering/EllipsisBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698