| Index: third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
|
| index bb6e3944e596482adf52775008b10a271ac07185..fe540006f50df4236569d8d556372926ad4c7afb 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
|
| @@ -65,6 +65,7 @@ interface InspectorInstrumentation {
|
| #include "core/html/HTMLSlotElement.h"
|
|
|
| class ConsoleMessage;
|
| +class HTMLDocumentParser;
|
| class ThreadableLoaderClient;
|
| class WebSocketHandshakeRequest;
|
| class WebSocketHandshakeResponse;
|
| @@ -336,11 +337,14 @@ class XMLHttpRequest;
|
| [Performance, DOMDebugger]
|
| ExecuteScript([Keep] ExecutionContext* context);
|
|
|
| - [Performance]
|
| - CallFunction([Keep] ExecutionContext* context, v8::Local<v8::Function> function);
|
| + [Performance, TraceEvents]
|
| + CallFunction([Keep] ExecutionContext* context, v8::Local<v8::Function> function, int depth = 0);
|
|
|
| [Performance, DOMDebugger]
|
| UserCallback([Keep] ExecutionContext* context, const char* name, const AtomicString& atomicName, bool recurring, EventTarget* eventTarget = nullptr);
|
| +
|
| + [TraceEvents]
|
| + ParseHTML(Document* document, HTMLDocumentParser* parser);
|
| }
|
|
|
| interface InspectorOverrides {
|
|
|