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

Unified Diff: Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.h

Issue 1236473002: Fix virtual/override/final usage in Source/bindings/. (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
Index: Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.h
diff --git a/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.h b/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.h
index 81df41d9cab2b3fe9d324aaeb134ad73dda952d0..77ce82a1f537950bf1b6019fa1e48f93760beb48 100644
--- a/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.h
+++ b/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.h
@@ -46,13 +46,13 @@ public:
return adoptRef(new V8WorkerGlobalScopeEventListener(listener, isInline, scriptState));
}
- virtual void handleEvent(ScriptState*, Event*) override;
+ void handleEvent(ScriptState*, Event*) override;
protected:
V8WorkerGlobalScopeEventListener(v8::Local<v8::Object> listener, bool isInline, ScriptState*);
private:
- virtual v8::Local<v8::Value> callListenerFunction(ScriptState*, v8::Local<v8::Value>, Event*) override;
+ v8::Local<v8::Value> callListenerFunction(ScriptState*, v8::Local<v8::Value>, Event*) override;
v8::Local<v8::Object> getReceiverObject(ScriptState*, Event*);
};
« no previous file with comments | « Source/bindings/core/v8/V8StringResource.h ('k') | Source/bindings/core/v8/custom/V8CustomXPathNSResolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698