| Index: third_party/WebKit/Source/core/inspector/ThreadDebugger.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/ThreadDebugger.h b/third_party/WebKit/Source/core/inspector/ThreadDebugger.h
|
| index 5ae90bfb3fec784318154118ee985e4c9e57927e..19eec3e15e71dc593b87790b8f537b8005ecc0de 100644
|
| --- a/third_party/WebKit/Source/core/inspector/ThreadDebugger.h
|
| +++ b/third_party/WebKit/Source/core/inspector/ThreadDebugger.h
|
| @@ -26,10 +26,14 @@
|
| void muteWarningsAndDeprecations() override { };
|
| void unmuteWarningsAndDeprecations() override { };
|
| void eventListeners(v8::Local<v8::Value>, V8EventListenerInfoList&) override;
|
| + v8::MaybeLocal<v8::Object> instantiateObject(v8::Local<v8::Function>) override;
|
| + v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Context>, v8::Local<v8::Script>) override;
|
| + v8::MaybeLocal<v8::Value> compileAndRunInternalScript(v8::Local<v8::String>) override;
|
| + v8::MaybeLocal<v8::Value> callFunction(v8::Local<v8::Function>, v8::Local<v8::Context>, v8::Local<v8::Value> receiver, int argc, v8::Local<v8::Value> info[]) override;
|
| + v8::MaybeLocal<v8::Value> callInternalFunction(v8::Local<v8::Function>, v8::Local<v8::Value> receiver, int argc, v8::Local<v8::Value> info[]) override;
|
| String16 valueSubtype(v8::Local<v8::Value>) override;
|
| bool formatAccessorsAsProperties(v8::Local<v8::Value>) override;
|
| bool hasRecursionLevel() override;
|
| - bool isExecutionAllowed() override;
|
| double currentTimeMS() override;
|
|
|
| V8Debugger* debugger() const { return m_debugger.get(); }
|
|
|