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

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

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 f44ecb80d586dfb9f136c1ed1ce30fe3c0b12214..e71909d76ff3344b252fe64f235bd8295c3dbce3 100644
--- a/Source/core/events/ApplicationCacheErrorEvent.h
+++ b/Source/core/events/ApplicationCacheErrorEvent.h
@@ -15,7 +15,7 @@ namespace blink {
class ApplicationCacheErrorEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- virtual ~ApplicationCacheErrorEvent();
+ ~ApplicationCacheErrorEvent() override;
static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create()
{
@@ -37,7 +37,7 @@ public:
int status() const { return m_status; }
const String& message() const { return m_message; }
- virtual const AtomicString& interfaceName() const override { return EventNames::ApplicationCacheErrorEvent; }
+ const AtomicString& interfaceName() const override { return EventNames::ApplicationCacheErrorEvent; }
DECLARE_VIRTUAL_TRACE();
« 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