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

Unified Diff: Source/core/editing/RemoveCSSPropertyCommand.h

Issue 616603006: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/editing (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/editing/MoveSelectionCommand.h ('k') | Source/core/editing/RemoveFormatCommand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/RemoveCSSPropertyCommand.h
diff --git a/Source/core/editing/RemoveCSSPropertyCommand.h b/Source/core/editing/RemoveCSSPropertyCommand.h
index 90dc5753f278e704fe4b30c57f6f5a01ae9f3575..df3ecca2abac52727f9ec69f23d7326977215f5a 100644
--- a/Source/core/editing/RemoveCSSPropertyCommand.h
+++ b/Source/core/editing/RemoveCSSPropertyCommand.h
@@ -33,21 +33,21 @@ namespace blink {
class Element;
-class RemoveCSSPropertyCommand FINAL : public SimpleEditCommand {
+class RemoveCSSPropertyCommand final : public SimpleEditCommand {
public:
static PassRefPtrWillBeRawPtr<RemoveCSSPropertyCommand> create(Document& document, PassRefPtrWillBeRawPtr<Element> element, CSSPropertyID property)
{
return adoptRefWillBeNoop(new RemoveCSSPropertyCommand(document, element, property));
}
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
RemoveCSSPropertyCommand(Document&, PassRefPtrWillBeRawPtr<Element>, CSSPropertyID);
virtual ~RemoveCSSPropertyCommand();
- virtual void doApply() OVERRIDE;
- virtual void doUnapply() OVERRIDE;
+ virtual void doApply() override;
+ virtual void doUnapply() override;
RefPtrWillBeMember<Element> m_element;
CSSPropertyID m_property;
« no previous file with comments | « Source/core/editing/MoveSelectionCommand.h ('k') | Source/core/editing/RemoveFormatCommand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698