Index: third_party/WebKit/Source/core/inspector/InspectorInstrumentation.h |
diff --git a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.h b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.h |
index 0da7bdcb5acf06ad844638a96252c90217d11b51..ff9706fbe704fffdd01854af01f081ab71786286 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.h |
+++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.h |
@@ -46,6 +46,19 @@ class WorkerGlobalScope; |
namespace probe { |
+class CORE_EXPORT ProbeBase { |
+ STACK_ALLOCATED() |
+ |
+ public: |
+ double captureStartTime() const; |
+ double captureEndTime() const; |
+ double duration() const; |
+ |
+ private: |
+ mutable double m_startTime = 0; |
+ mutable double m_endTime = 0; |
+}; |
+ |
class CORE_EXPORT NativeBreakpoint { |
STACK_ALLOCATED(); |