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

Unified Diff: Source/core/html/ime/InputMethodContext.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/html/forms/WeekInputType.h ('k') | Source/core/html/imports/HTMLImportChild.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/html/forms/WeekInputType.h ('k') | Source/core/html/imports/HTMLImportChild.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698