Index: third_party/WebKit/Source/core/frame/LocalFrame.h |
diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.h b/third_party/WebKit/Source/core/frame/LocalFrame.h |
index 889f341749c926dead1ceaee3a19261b3c9aa495..efe28d244fec49c1abadff3cfbc0661140d67728 100644 |
--- a/third_party/WebKit/Source/core/frame/LocalFrame.h |
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.h |
@@ -77,6 +77,7 @@ class ScriptController; |
class SpellChecker; |
class WebFrameHostScheduler; |
class WebFrameScheduler; |
+class InspectorWebPerfAgent; |
extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<LocalFrame>; |
@@ -185,6 +186,8 @@ public: |
PluginData* pluginData() const; |
+ void enableWebPerfInspectorInstrumentation(); |
pfeldman
2016/08/17 21:12:11
We should enable it externally to achieve better l
|
+ |
private: |
friend class FrameNavigationDisabler; |
@@ -226,6 +229,7 @@ private: |
bool m_inViewSourceMode; |
Member<InstrumentingAgents> m_instrumentingAgents; |
+ Member<InspectorWebPerfAgent> m_inspectorWebPerformanceAgent; |
InterfaceProvider* const m_interfaceProvider; |
}; |