| 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();
|
|
|