Chromium Code Reviews| 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 e2031a6df4e3bb317019aeb5132e3d1ff0edea0b..7e9e6abe7abed79685026ef84598832e31437364 100644 |
| --- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl |
| +++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl |
| @@ -132,7 +132,10 @@ interface InspectorInstrumentation { |
| void didExecuteScript(const InspectorInstrumentationCookie&); |
| [DOMDebugger, Inline=FastReturn] |
| - void willHandleEvent([Keep] EventTarget*, Event*, EventListener* listener, bool useCapture); |
| + InspectorInstrumentationCookie willHandleEvent([Keep] EventTarget*, Event*, EventListener* listener, bool useCapture); |
| + |
| + [Debugger, Inline=FastReturn] |
| + void cancelPauseOnNextStatement(const InspectorInstrumentationCookie&); |
|
dgozman
2016/04/15 16:40:01
This should go to DOMDebugger.
kozy
2016/04/15 17:11:47
Done.
|
| [Page, Inline=FastReturn] |
| void didUpdateLayout(LocalFrame*); |
| @@ -267,7 +270,7 @@ interface InspectorInstrumentation { |
| void removedResourceFromMemoryCache(Resource* cachedResource); |
| [DOMDebugger] |
| - void allowNativeBreakpoint(ExecutionContext*, const String& name, bool sync); |
| + InspectorInstrumentationCookie allowNativeBreakpoint(ExecutionContext*, const String& name, bool sync); |
| [Worker] |
| void didStartWorker(ExecutionContext*, WorkerInspectorProxy* proxy, bool waitingForDebugger); |