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

Unified Diff: Source/core/events/HashChangeEvent.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/GestureEvent.h ('k') | Source/core/events/KeyboardEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/HashChangeEvent.h
diff --git a/Source/core/events/HashChangeEvent.h b/Source/core/events/HashChangeEvent.h
index 242fc3417daf5f7ad7a7e5ff52b6d4d23190cf88..464837a7c79e86ccb8c7168923ffa2b3045bfd2b 100644
--- a/Source/core/events/HashChangeEvent.h
+++ b/Source/core/events/HashChangeEvent.h
@@ -32,7 +32,7 @@ struct HashChangeEventInit : public EventInit {
String newURL;
};
-class HashChangeEvent FINAL : public Event {
+class HashChangeEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<HashChangeEvent> create()
@@ -64,9 +64,9 @@ public:
const String& oldURL() const { return m_oldURL; }
const String& newURL() const { return m_newURL; }
- virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::HashChangeEvent; }
+ virtual const AtomicString& interfaceName() const override { return EventNames::HashChangeEvent; }
- virtual void trace(Visitor* visitor) OVERRIDE { Event::trace(visitor); }
+ virtual void trace(Visitor* visitor) override { Event::trace(visitor); }
private:
HashChangeEvent() { }
« no previous file with comments | « Source/core/events/GestureEvent.h ('k') | Source/core/events/KeyboardEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698