| 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..2ab7bcebd8f3e40d43ba37d0b6a1d39c4cd28745 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 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();
|
|
|
|
|