| Index: third_party/WebKit/Source/bindings/tests/results/core/V8VoidExperimentalCallbackFunction.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8VoidExperimentalCallbackFunction.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8VoidExperimentalCallbackFunction.cpp
|
| index 56704495e31a4ff73142a0d59e02b71becc9243c..49e7f3f5c6192c6aa818c7eac2af1ddf7710926f 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8VoidExperimentalCallbackFunction.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8VoidExperimentalCallbackFunction.cpp
|
| @@ -6,7 +6,9 @@
|
|
|
| #include "V8VoidExperimentalCallbackFunction.h"
|
|
|
| +#include "bindings/core/v8/ExceptionState.h"
|
| #include "bindings/core/v8/ScriptState.h"
|
| +#include "bindings/core/v8/ToV8.h"
|
| #include "bindings/core/v8/V8Binding.h"
|
| #include "wtf/Assertions.h"
|
|
|
| @@ -30,7 +32,9 @@ bool V8VoidExperimentalCallbackFunction::call(ScriptState* scriptState, ScriptWr
|
|
|
| if (m_callback.isEmpty())
|
| return false;
|
| +
|
| ScriptState::Scope scope(scriptState);
|
| + ExceptionState exceptionState(scriptState->isolate(), ExceptionState::ExecutionContext, "VoidExperimentalCallbackFunction");
|
|
|
| v8::Local<v8::Value> *argv = nullptr;
|
|
|
|
|