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

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

Issue 2733093003: DevTools: instrument user callbacks based on generic probes, remove NativeBreakpoint. (Closed)
Patch Set: test fixed Created 3 years, 9 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 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 {

Powered by Google App Engine
This is Rietveld 408576698