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

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

Issue 135833002: Add missing virtual keyword for methods with OVERRIDE (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/CompositeEditCommand.h ('k') | Source/core/html/shadow/MediaControlsChromium.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/CreateLinkCommand.h
diff --git a/Source/core/editing/CreateLinkCommand.h b/Source/core/editing/CreateLinkCommand.h
index 4f7a22d25512509db8f5096990e1a204a9271bc8..d64dcef6f228cf6325b037615bc3610e4aff7e57 100644
--- a/Source/core/editing/CreateLinkCommand.h
+++ b/Source/core/editing/CreateLinkCommand.h
@@ -37,7 +37,7 @@ public:
return adoptRef(new CreateLinkCommand(document, linkURL));
}
- bool isCreateLinkCommand() const OVERRIDE { return true; }
+ virtual bool isCreateLinkCommand() const OVERRIDE { return true; }
private:
CreateLinkCommand(Document&, const String& linkURL);
« no previous file with comments | « Source/core/editing/CompositeEditCommand.h ('k') | Source/core/html/shadow/MediaControlsChromium.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698