Chromium Code Reviews| Index: third_party/WebKit/Source/core/timing/Performance.h |
| diff --git a/third_party/WebKit/Source/core/timing/Performance.h b/third_party/WebKit/Source/core/timing/Performance.h |
| index 002c903a83b47365a673c2aae1334b14ef58c525..7ace04a957ea867e630838ff744f27766eee4f4f 100644 |
| --- a/third_party/WebKit/Source/core/timing/Performance.h |
| +++ b/third_party/WebKit/Source/core/timing/Performance.h |
| @@ -64,6 +64,7 @@ class CORE_EXPORT Performance final : public PerformanceBase, |
| PerformanceTiming* timing() const override; |
| void updateLongTaskInstrumentation() override; |
| + bool observeringLongTasks(); |
|
caseq
2016/10/26 21:19:41
typo :)
panicker
2016/10/27 23:06:53
Oops. Fixed.
panicker
2016/10/28 00:09:24
Sorry, this is actually fine. It's the getter. Sho
|
| ScriptValue toJSONForBinding(ScriptState*) const; |
| @@ -74,7 +75,8 @@ class CORE_EXPORT Performance final : public PerformanceBase, |
| mutable Member<PerformanceNavigation> m_navigation; |
| mutable Member<PerformanceTiming> m_timing; |
| - mutable Member<InspectorWebPerfAgent> m_longTaskInspectorAgent; |
| + |
| + bool m_observingLongTasks; |
| }; |
| } // namespace blink |