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

Unified Diff: Source/bindings/core/v8/ScriptPromisePropertyTest.cpp

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
« no previous file with comments | « Source/bindings/core/v8/ScriptPromiseProperty.h ('k') | Source/bindings/core/v8/ScriptPromiseResolver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptPromisePropertyTest.cpp
diff --git a/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp b/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp
index ca116fb80de32f1612f179b4b527b6986d6e6648..58b81c37d03539ee1aa85ef8a512c606adb2b835 100644
--- a/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp
+++ b/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp
@@ -44,7 +44,7 @@ private:
{
}
- virtual ScriptValue call(ScriptValue) override;
+ ScriptValue call(ScriptValue) override;
};
ScriptValue NotReached::call(ScriptValue)
@@ -69,7 +69,7 @@ private:
{
}
- virtual ScriptValue call(ScriptValue arg) override
+ ScriptValue call(ScriptValue arg) override
{
m_value = arg;
m_callCount++;
@@ -187,7 +187,7 @@ public:
Property* property() { return m_holder->property(); }
ScriptPromise promise(DOMWrapperWorld& world) { return property()->promise(world); }
- virtual void destroyContext() override
+ void destroyContext() override
{
m_holder = nullptr;
ScriptPromisePropertyTestBase::destroyContext();
« no previous file with comments | « Source/bindings/core/v8/ScriptPromiseProperty.h ('k') | Source/bindings/core/v8/ScriptPromiseResolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698