| 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 91daa0c993da4dde1bae7bcce087897c22998b67..654896e42d15453e82be42925683287ef6063658 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
|
| @@ -324,20 +324,23 @@ class XMLHttpRequest;
|
| [Page]
|
| void didChangeViewport(LocalFrame* document);
|
|
|
| + [DOMDebugger]
|
| + void breakableLocation(ExecutionContext* context, const char* name);
|
| +
|
| [Page, Performance]
|
| RecalculateStyle(Document* document);
|
|
|
| [Page, Performance]
|
| UpdateLayout(Document*);
|
|
|
| - [Performance]
|
| + [Performance, DOMDebugger]
|
| ExecuteScript([Keep] ExecutionContext* context);
|
|
|
| [Performance]
|
| CallFunction([Keep] ExecutionContext* context, v8::Local<v8::Function> function);
|
|
|
| - [Performance]
|
| - UserCallback([Keep] ExecutionContext* context, const char* name, const AtomicString& atomicName, bool recurring);
|
| + [Performance, DOMDebugger]
|
| + UserCallback([Keep] ExecutionContext* context, const char* name, const AtomicString& atomicName, bool recurring, EventTarget* eventTarget = nullptr);
|
| }
|
|
|
| interface InspectorOverrides {
|
|
|