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: |