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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h

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/InspectorTraceEvents.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
index 921f8d3847a3780469c2b242aef6abe7001340fd..23734812135a022590690342ebb71af918b7f5d9 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
@@ -59,6 +59,12 @@ class StyleImage;
class WorkerThread;
class XMLHttpRequest;
+namespace probe {
+class CallFunction;
+class ExecuteScript;
+class ParseHTML;
+}
+
enum ResourceLoadPriority : int;
class CORE_EXPORT InspectorTraceEvents : public InspectorAgent {
@@ -93,6 +99,15 @@ class CORE_EXPORT InspectorTraceEvents : public InspectorAgent {
int64_t decodedBodyLength);
void didFailLoading(unsigned long identifier, const ResourceError&);
+ void will(const probe::ExecuteScript&);
+ void did(const probe::ExecuteScript&);
+
+ void will(const probe::ParseHTML&);
+ void did(const probe::ParseHTML&);
+
+ void will(const probe::CallFunction&);
+ void did(const probe::CallFunction&);
+
DECLARE_VIRTUAL_TRACE();
private:

Powered by Google App Engine
This is Rietveld 408576698