X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fhtml%2Fime%2FInputMethodContext.h;h=b5e4bf9c6327aada9b35b5a3d3574e76f7445ce4;hb=refs%2Fchanges%2F05%2F32605%2F1;hp=67a45d4834635c5d926b5e8a3301e96ea88802df;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/html/ime/InputMethodContext.h b/src/third_party/WebKit/Source/core/html/ime/InputMethodContext.h index 67a45d4..b5e4bf9 100644 --- a/src/third_party/WebKit/Source/core/html/ime/InputMethodContext.h +++ b/src/third_party/WebKit/Source/core/html/ime/InputMethodContext.h @@ -43,9 +43,8 @@ namespace blink { class ExecutionContext; class InputMethodController; -class Node; -class InputMethodContext FINAL : public NoBaseWillBeGarbageCollectedFinalized, public EventTargetWithInlineData { +class InputMethodContext final : public NoBaseWillBeGarbageCollectedFinalized, public EventTargetWithInlineData { DEFINE_WRAPPERTYPEINFO(); WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InputMethodContext); public: @@ -68,8 +67,8 @@ public: int selectionEnd() const; const Vector& segments(); - virtual const AtomicString& interfaceName() const OVERRIDE; - virtual ExecutionContext* executionContext() const OVERRIDE; + virtual const AtomicString& interfaceName() const override; + virtual ExecutionContext* executionContext() const override; DEFINE_ATTRIBUTE_EVENT_LISTENER(candidatewindowshow); DEFINE_ATTRIBUTE_EVENT_LISTENER(candidatewindowupdate); @@ -79,7 +78,7 @@ public: void dispatchCandidateWindowUpdateEvent(); void dispatchCandidateWindowHideEvent(); - virtual void trace(Visitor*) OVERRIDE; + virtual void trace(Visitor*) override; private: InputMethodContext(HTMLElement*); @@ -88,8 +87,8 @@ private: InputMethodController& inputMethodController() const; #if !ENABLE(OILPAN) - virtual void refEventTarget() OVERRIDE { ref(); } - virtual void derefEventTarget() OVERRIDE { deref(); } + virtual void refEventTarget() override { ref(); } + virtual void derefEventTarget() override { deref(); } #endif RawPtrWillBeMember m_element;