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

Unified Diff: Source/core/events/AutocompleteErrorEvent.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/ApplicationCacheErrorEvent.h ('k') | Source/core/events/BeforeTextInsertedEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/AutocompleteErrorEvent.h
diff --git a/Source/core/events/AutocompleteErrorEvent.h b/Source/core/events/AutocompleteErrorEvent.h
index e9d48f416c56fc5e1d0fc400b76e622b5809ac96..5b0aecb7412e9f494d66053f8289ac6966ad19d1 100644
--- a/Source/core/events/AutocompleteErrorEvent.h
+++ b/Source/core/events/AutocompleteErrorEvent.h
@@ -33,7 +33,7 @@ struct AutocompleteErrorEventInit : public EventInit {
String reason;
};
-class AutocompleteErrorEvent FINAL : public Event {
+class AutocompleteErrorEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create()
@@ -53,9 +53,9 @@ public:
const String& reason() const { return m_reason; }
- virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::AutocompleteErrorEvent; }
+ virtual const AtomicString& interfaceName() const override { return EventNames::AutocompleteErrorEvent; }
- virtual void trace(Visitor* visitor) OVERRIDE { Event::trace(visitor); }
+ virtual void trace(Visitor* visitor) override { Event::trace(visitor); }
private:
AutocompleteErrorEvent() { }
« no previous file with comments | « Source/core/events/ApplicationCacheErrorEvent.h ('k') | Source/core/events/BeforeTextInsertedEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698