Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(873)

Unified Diff: third_party/WebKit/Source/core/frame/LocalFrame.h

Issue 2238883005: POC for InspectorInstrumentation adding InspectorWebPerfAgent Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add task observer to WebPerfAgent Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698