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

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

Issue 638813002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/tests/results/core/TestDictionary.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/core/V8TestCallbackInterface.h
diff --git a/Source/bindings/tests/results/core/V8TestCallbackInterface.h b/Source/bindings/tests/results/core/V8TestCallbackInterface.h
index 0756bfc48ead372359f4ec8f8e2874dbe5d2272d..2f282c5a53a093810b3fa3850ccc51947e958158 100644
--- a/Source/bindings/tests/results/core/V8TestCallbackInterface.h
+++ b/Source/bindings/tests/results/core/V8TestCallbackInterface.h
@@ -14,7 +14,7 @@
namespace blink {
-class V8TestCallbackInterface FINAL : public TestCallbackInterface, public ActiveDOMCallback {
+class V8TestCallbackInterface final : public TestCallbackInterface, public ActiveDOMCallback {
public:
static V8TestCallbackInterface* create(v8::Handle<v8::Function> callback, ScriptState* scriptState)
{
@@ -23,17 +23,17 @@ public:
virtual ~V8TestCallbackInterface();
- 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;
- virtual void voidMethodWillBeGarbageCollectedSequenceArg(const WillBeHeapVector<RefPtrWillBeMember<TestInterfaceWillBeGarbageCollected> >& sequenceArg) OVERRIDE;
- virtual void voidMethodWillBeGarbageCollectedArrayArg(const WillBeHeapVector<RefPtrWillBeMember<TestInterfaceWillBeGarbageCollected> >& arrayArg) OVERRIDE;
+ 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;
+ virtual void voidMethodWillBeGarbageCollectedSequenceArg(const WillBeHeapVector<RefPtrWillBeMember<TestInterfaceWillBeGarbageCollected> >& sequenceArg) override;
+ virtual void voidMethodWillBeGarbageCollectedArrayArg(const WillBeHeapVector<RefPtrWillBeMember<TestInterfaceWillBeGarbageCollected> >& arrayArg) override;
private:
V8TestCallbackInterface(v8::Handle<v8::Function>, ScriptState*);
« no previous file with comments | « Source/bindings/tests/results/core/TestDictionary.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698