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

Unified Diff: Source/core/events/ApplicationCacheErrorEvent.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/AnimationPlayerEvent.h ('k') | Source/core/events/AutocompleteErrorEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/ApplicationCacheErrorEvent.h
diff --git a/Source/core/events/ApplicationCacheErrorEvent.h b/Source/core/events/ApplicationCacheErrorEvent.h
index 843937dd66c05a25aa164428552ae62710e70da9..5fbfe099c7ae3a42231594385fe51614a95d785f 100644
--- a/Source/core/events/ApplicationCacheErrorEvent.h
+++ b/Source/core/events/ApplicationCacheErrorEvent.h
@@ -22,7 +22,7 @@ struct ApplicationCacheErrorEventInit : public EventInit {
String message;
};
-class ApplicationCacheErrorEvent FINAL : public Event {
+class ApplicationCacheErrorEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~ApplicationCacheErrorEvent();
@@ -47,9 +47,9 @@ public:
int status() const { return m_status; }
const String& message() const { return m_message; }
- virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::ApplicationCacheErrorEvent; }
+ virtual const AtomicString& interfaceName() const override { return EventNames::ApplicationCacheErrorEvent; }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
ApplicationCacheErrorEvent();
« no previous file with comments | « Source/core/events/AnimationPlayerEvent.h ('k') | Source/core/events/AutocompleteErrorEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698