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

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

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/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 309a0c3f43ba0375e9431c02c658e477ad78d283..77bc5493743a8ffec093baf40bec692cac30bc50 100644
--- a/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp
+++ b/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp
@@ -43,7 +43,7 @@ private:
{
}
- virtual ScriptValue call(ScriptValue) OVERRIDE;
+ virtual ScriptValue call(ScriptValue) override;
};
ScriptValue NotReached::call(ScriptValue)
@@ -68,7 +68,7 @@ private:
{
}
- virtual ScriptValue call(ScriptValue arg) OVERRIDE
+ virtual ScriptValue call(ScriptValue arg) override
{
m_value = arg;
m_callCount++;
@@ -89,7 +89,7 @@ public:
Property* property() { return m_property; }
GarbageCollectedScriptWrappable* toGarbageCollectedScriptWrappable() { return this; }
- virtual void trace(Visitor *visitor) OVERRIDE
+ virtual void trace(Visitor *visitor) override
{
GarbageCollectedScriptWrappable::trace(visitor);
visitor->trace(m_property);
@@ -186,7 +186,7 @@ public:
Property* property() { return m_holder->property(); }
ScriptPromise promise(DOMWrapperWorld& world) { return property()->promise(world); }
- virtual void destroyContext() OVERRIDE
+ virtual 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