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

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

Issue 1218293014: Fix virtual/override/final usage in Source/core/editing/. (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
Index: Source/core/editing/CreateLinkCommand.h
diff --git a/Source/core/editing/CreateLinkCommand.h b/Source/core/editing/CreateLinkCommand.h
index 7593aab746988a227d89032f26e3c16c87839d2c..dce39d28952d9e1ca6ee511a521418f1a21eed8c 100644
--- a/Source/core/editing/CreateLinkCommand.h
+++ b/Source/core/editing/CreateLinkCommand.h
@@ -40,8 +40,8 @@ public:
private:
CreateLinkCommand(Document&, const String& linkURL);
- virtual void doApply() override;
- virtual EditAction editingAction() const override { return EditActionCreateLink; }
+ void doApply() override;
+ EditAction editingAction() const override { return EditActionCreateLink; }
String m_url;
};

Powered by Google App Engine
This is Rietveld 408576698