Index: Source/modules/serviceworkers/FetchEvent.h |
diff --git a/Source/modules/serviceworkers/FetchEvent.h b/Source/modules/serviceworkers/FetchEvent.h |
index 2b12c19ebbc7d22fbf57564816a3f9b1cf060461..6eeeb68c5f48705b41497703fc216cb6234c6052 100644 |
--- a/Source/modules/serviceworkers/FetchEvent.h |
+++ b/Source/modules/serviceworkers/FetchEvent.h |
@@ -20,7 +20,7 @@ class RespondWithObserver; |
// A fetch event is dispatched by the client to a service worker's script |
// context. RespondWithObserver can be used to notify the client about the |
// service worker's response. |
-class FetchEvent FINAL : public Event { |
+class FetchEvent final : public Event { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
static PassRefPtrWillBeRawPtr<FetchEvent> create(); |
@@ -31,11 +31,11 @@ public: |
void respondWith(ScriptState*, const ScriptValue&, ExceptionState&); |
- virtual const AtomicString& interfaceName() const OVERRIDE; |
+ virtual const AtomicString& interfaceName() const override; |
void setIsReload(bool); |
- virtual void trace(Visitor*) OVERRIDE; |
+ virtual void trace(Visitor*) override; |
protected: |
FetchEvent(); |