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

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

Issue 2737863002: DevTools: move counter-related devtools.timeline trace events into probe:: probes. (Closed)
Patch Set: same 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 bb6e3944e596482adf52775008b10a271ac07185..fe540006f50df4236569d8d556372926ad4c7afb 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
+++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
@@ -65,6 +65,7 @@ interface InspectorInstrumentation {
#include "core/html/HTMLSlotElement.h"
class ConsoleMessage;
+class HTMLDocumentParser;
class ThreadableLoaderClient;
class WebSocketHandshakeRequest;
class WebSocketHandshakeResponse;
@@ -336,11 +337,14 @@ class XMLHttpRequest;
[Performance, DOMDebugger]
ExecuteScript([Keep] ExecutionContext* context);
- [Performance]
- CallFunction([Keep] ExecutionContext* context, v8::Local<v8::Function> function);
+ [Performance, TraceEvents]
+ CallFunction([Keep] ExecutionContext* context, v8::Local<v8::Function> function, int depth = 0);
[Performance, DOMDebugger]
UserCallback([Keep] ExecutionContext* context, const char* name, const AtomicString& atomicName, bool recurring, EventTarget* eventTarget = nullptr);
+
+ [TraceEvents]
+ ParseHTML(Document* document, HTMLDocumentParser* parser);
}
interface InspectorOverrides {

Powered by Google App Engine
This is Rietveld 408576698