| 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..0171d6564a4065b725dceb2b881ae4cbb7c638d8 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);
|
| +
|
| + [DOMDebugger, Inline=FastReturn]
|
| + void cancelPauseOnNextStatement(const InspectorInstrumentationCookie&);
|
|
|
| [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);
|
|
|