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

Unified Diff: Source/web/EditorClientImpl.h

Issue 1230533002: Fix virtual/override/final usage in Source/web/. (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 | « Source/web/DragClientImpl.h ('k') | Source/web/ExternalDateTimeChooser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/EditorClientImpl.h
diff --git a/Source/web/EditorClientImpl.h b/Source/web/EditorClientImpl.h
index 8e84ab56e680bb31ff7e125e68c1773d2e1a5f14..120c44e230c07f027e54626f8956235c30239de8 100644
--- a/Source/web/EditorClientImpl.h
+++ b/Source/web/EditorClientImpl.h
@@ -42,13 +42,13 @@ class WebViewImpl;
class EditorClientImpl final : public EditorClient {
public:
explicit EditorClientImpl(WebViewImpl*);
- virtual ~EditorClientImpl();
+ ~EditorClientImpl() override;
- virtual void respondToChangedContents() override;
- virtual void respondToChangedSelection(LocalFrame*, SelectionType) override;
- virtual bool canCopyCut(LocalFrame*, bool defaultValue) const override;
- virtual bool canPaste(LocalFrame*, bool defaultValue) const override;
- virtual bool handleKeyboardEvent() override;
+ void respondToChangedContents() override;
+ void respondToChangedSelection(LocalFrame*, SelectionType) override;
+ bool canCopyCut(LocalFrame*, bool defaultValue) const override;
+ bool canPaste(LocalFrame*, bool defaultValue) const override;
+ bool handleKeyboardEvent() override;
private:
WebViewImpl* m_webView;
« no previous file with comments | « Source/web/DragClientImpl.h ('k') | Source/web/ExternalDateTimeChooser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698