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

Unified Diff: Source/core/events/BeforeTextInsertedEvent.h

Issue 636833002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/events (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/events/AutocompleteErrorEvent.h ('k') | Source/core/events/BeforeUnloadEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/BeforeTextInsertedEvent.h
diff --git a/Source/core/events/BeforeTextInsertedEvent.h b/Source/core/events/BeforeTextInsertedEvent.h
index 6e783a2bdec40ac82a2119735fd29ab4dab23a10..9e03efc0831063a54c8edb573e70375b9a08507d 100644
--- a/Source/core/events/BeforeTextInsertedEvent.h
+++ b/Source/core/events/BeforeTextInsertedEvent.h
@@ -30,7 +30,7 @@
namespace blink {
-class BeforeTextInsertedEvent FINAL : public Event {
+class BeforeTextInsertedEvent final : public Event {
public:
virtual ~BeforeTextInsertedEvent();
@@ -39,13 +39,13 @@ public:
return adoptRefWillBeNoop(new BeforeTextInsertedEvent(text));
}
- virtual const AtomicString& interfaceName() const OVERRIDE;
- virtual bool isBeforeTextInsertedEvent() const OVERRIDE { return true; }
+ virtual const AtomicString& interfaceName() const override;
+ virtual bool isBeforeTextInsertedEvent() const override { return true; }
const String& text() const { return m_text; }
void setText(const String& s) { m_text = s; }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit BeforeTextInsertedEvent(const String&);
« no previous file with comments | « Source/core/events/AutocompleteErrorEvent.h ('k') | Source/core/events/BeforeUnloadEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698