X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fweb%2FEditorClientImpl.h;h=8e84ab56e680bb31ff7e125e68c1773d2e1a5f14;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=c0b1bf33f9119fe0e6d94b4f00e0019a20a28a36;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/web/EditorClientImpl.h b/src/third_party/WebKit/Source/web/EditorClientImpl.h index c0b1bf3..8e84ab5 100644 --- a/src/third_party/WebKit/Source/web/EditorClientImpl.h +++ b/src/third_party/WebKit/Source/web/EditorClientImpl.h @@ -37,19 +37,18 @@ namespace blink { class LocalFrame; -class HTMLInputElement; class WebViewImpl; -class EditorClientImpl FINAL : public EditorClient { +class EditorClientImpl final : public EditorClient { public: explicit EditorClientImpl(WebViewImpl*); virtual ~EditorClientImpl(); - 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; + 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; private: WebViewImpl* m_webView;