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

Unified Diff: Source/bindings/core/v8/ScriptPromiseResolverTest.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/ScriptPromiseResolver.h ('k') | Source/bindings/core/v8/ScriptPromiseTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptPromiseResolverTest.cpp
diff --git a/Source/bindings/core/v8/ScriptPromiseResolverTest.cpp b/Source/bindings/core/v8/ScriptPromiseResolverTest.cpp
index 4c5750aef0cbf6081ddec88823351132326220a7..fb698ea14882ae5e816f77ffbdd3d1bd5f55e621 100644
--- a/Source/bindings/core/v8/ScriptPromiseResolverTest.cpp
+++ b/Source/bindings/core/v8/ScriptPromiseResolverTest.cpp
@@ -37,7 +37,7 @@ private:
{
}
- virtual ScriptValue call(ScriptValue value) override
+ ScriptValue call(ScriptValue value) override
{
ASSERT(!value.isEmpty());
*m_value = toCoreString(value.v8Value()->ToString(scriptState()->context()).ToLocalChecked());
@@ -54,7 +54,7 @@ public:
{
}
- virtual ~ScriptPromiseResolverTest()
+ ~ScriptPromiseResolverTest() override
{
ScriptState::Scope scope(scriptState());
// FIXME: We put this statement here to clear an exception from the
« no previous file with comments | « Source/bindings/core/v8/ScriptPromiseResolver.h ('k') | Source/bindings/core/v8/ScriptPromiseTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698