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

Unified Diff: Source/bindings/tests/results/V8TestCallbackInterface.h

Issue 138613002: Make generated Callback bindings classes FINAL (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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/bindings/templates/callback_interface.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/results/V8TestCallbackInterface.h
diff --git a/Source/bindings/tests/results/V8TestCallbackInterface.h b/Source/bindings/tests/results/V8TestCallbackInterface.h
index 2e67f3813830c624150dba0dfe0b4d6113d46aef..c8dc7c02eb24c630feb89c6a80881d5f4bf3ea32 100644
--- a/Source/bindings/tests/results/V8TestCallbackInterface.h
+++ b/Source/bindings/tests/results/V8TestCallbackInterface.h
@@ -42,7 +42,7 @@ namespace WebCore {
class ExecutionContext;
-class V8TestCallbackInterface : public TestCallbackInterface, public ActiveDOMCallback {
+class V8TestCallbackInterface FINAL : public TestCallbackInterface, public ActiveDOMCallback {
public:
static PassOwnPtr<V8TestCallbackInterface> create(v8::Handle<v8::Function> callback, ExecutionContext* context)
{
@@ -52,15 +52,15 @@ public:
virtual ~V8TestCallbackInterface();
- virtual void voidMethod();
- virtual bool booleanMethod();
- virtual void voidMethodBooleanArg(bool boolArg);
- virtual void voidMethodSequenceArg(const Vector<RefPtr<TestInterfaceEmpty> >& sequenceArg);
- virtual void voidMethodFloatArg(float floatArg);
- virtual void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty* testInterfaceEmptyArg);
- virtual void voidMethodTestInterfaceEmptyStringArg(TestInterfaceEmpty* testInterfaceEmptyArg, const String& stringArg);
- virtual void callbackWithThisValueVoidMethodStringArg(ScriptValue thisValue, const String& stringArg);
- virtual void customVoidMethodTestInterfaceEmptyArg(TestInterfaceEmpty* testInterfaceEmptyArg);
+ virtual void voidMethod() OVERRIDE;
+ virtual bool booleanMethod() OVERRIDE;
+ virtual void voidMethodBooleanArg(bool boolArg) OVERRIDE;
+ virtual void voidMethodSequenceArg(const Vector<RefPtr<TestInterfaceEmpty> >& sequenceArg) OVERRIDE;
+ virtual void voidMethodFloatArg(float floatArg) OVERRIDE;
+ virtual void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty* testInterfaceEmptyArg) OVERRIDE;
+ virtual void voidMethodTestInterfaceEmptyStringArg(TestInterfaceEmpty* testInterfaceEmptyArg, const String& stringArg) OVERRIDE;
+ virtual void callbackWithThisValueVoidMethodStringArg(ScriptValue thisValue, const String& stringArg) OVERRIDE;
+ virtual void customVoidMethodTestInterfaceEmptyArg(TestInterfaceEmpty* testInterfaceEmptyArg) OVERRIDE;
private:
V8TestCallbackInterface(v8::Handle<v8::Function>, ExecutionContext*);
« no previous file with comments | « Source/bindings/templates/callback_interface.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698