Index: Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.h |
diff --git a/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.h b/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.h |
index fc76142f43131f7a8b6513cf7957daec7e392a70..6b05e975099fb28da60070431d495578338b23c5 100644 |
--- a/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.h |
+++ b/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.h |
@@ -39,20 +39,20 @@ namespace blink { |
class Event; |
-class V8WorkerGlobalScopeEventListener FINAL : public V8EventListener { |
+class V8WorkerGlobalScopeEventListener final : public V8EventListener { |
public: |
static PassRefPtr<V8WorkerGlobalScopeEventListener> create(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState) |
{ |
return adoptRef(new V8WorkerGlobalScopeEventListener(listener, isInline, scriptState)); |
} |
- virtual void handleEvent(ExecutionContext*, Event*) OVERRIDE; |
+ virtual void handleEvent(ExecutionContext*, Event*) override; |
protected: |
V8WorkerGlobalScopeEventListener(v8::Local<v8::Object> listener, bool isInline, ScriptState*); |
private: |
- virtual v8::Local<v8::Value> callListenerFunction(v8::Handle<v8::Value> jsEvent, Event*) OVERRIDE; |
+ virtual v8::Local<v8::Value> callListenerFunction(v8::Handle<v8::Value> jsEvent, Event*) override; |
v8::Local<v8::Object> getReceiverObject(Event*); |
}; |