Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(981)

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl

Issue 1891113002: [DevTools] Bring back InspectorInstrumenetation::didHandleEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698