| Index: Source/core/html/ime/InputMethodContext.h
|
| diff --git a/Source/core/html/ime/InputMethodContext.h b/Source/core/html/ime/InputMethodContext.h
|
| index cf0b2593d6123f0cca3f4b4d147fcf442112700a..b5e4bf9c6327aada9b35b5a3d3574e76f7445ce4 100644
|
| --- a/Source/core/html/ime/InputMethodContext.h
|
| +++ b/Source/core/html/ime/InputMethodContext.h
|
| @@ -44,7 +44,7 @@ namespace blink {
|
| class ExecutionContext;
|
| class InputMethodController;
|
|
|
| -class InputMethodContext FINAL : public NoBaseWillBeGarbageCollectedFinalized<InputMethodContext>, public EventTargetWithInlineData {
|
| +class InputMethodContext final : public NoBaseWillBeGarbageCollectedFinalized<InputMethodContext>, public EventTargetWithInlineData {
|
| DEFINE_WRAPPERTYPEINFO();
|
| WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InputMethodContext);
|
| public:
|
| @@ -67,8 +67,8 @@ public:
|
| int selectionEnd() const;
|
| const Vector<unsigned>& 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);
|
| @@ -78,7 +78,7 @@ public:
|
| void dispatchCandidateWindowUpdateEvent();
|
| void dispatchCandidateWindowHideEvent();
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| private:
|
| InputMethodContext(HTMLElement*);
|
| @@ -87,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<HTMLElement> m_element;
|
|
|