| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
|
| index 8ce4788307f64c43583bdc8be0ac4cd3fd501abb..18b1c3253e3bebdba3b2ae1e58f8d13f84e542c8 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
|
| @@ -7696,9 +7696,9 @@ static void postMessageImpl(const char* interfaceName, TestObject* instance, con
|
| return;
|
| }
|
|
|
| - // FIXME: Only pass context/exceptionState if instance really requires it.
|
| - ExecutionContext* context = currentExecutionContext(info.GetIsolate());
|
| - instance->postMessage(context, message.release(), transferables.messagePorts, exceptionState);
|
| + // FIXME: Only pass scriptState/exceptionState if instance really requires it.
|
| + ScriptState* scriptState = ScriptState::current(info.GetIsolate());
|
| + instance->postMessage(scriptState, message.release(), transferables.messagePorts, exceptionState);
|
| }
|
|
|
| static void activityLoggingForAllWorldsPerWorldBindingsVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
|
|