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

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

Issue 2760363002: [instrumentation] Generalize instrumentation to be used beyond the core layer (Closed)
Patch Set: Created 3 years, 9 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 6ac90b7c3cba39654200de3944352c268f8fa1b4..a2ee86ecae24095cca79b56ad84f1cf42a499e3e 100644
--- a/third_party/WebKit/Source/core/frame/LocalFrame.h
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.h
@@ -59,7 +59,7 @@ class FrameConsole;
class FrameSelection;
class FrameView;
class InputMethodController;
-class InstrumentingAgents;
+class InspectorInstrumentationAgents;
class InterfaceProvider;
class InterfaceRegistry;
class IntPoint;
@@ -164,7 +164,7 @@ class CORE_EXPORT LocalFrame final : public Frame,
// behavior for detached windows.
bool isCrossOriginSubframe() const;
- InstrumentingAgents* instrumentingAgents() {
+ InspectorInstrumentationAgents* instrumentingAgents() {
pfeldman 2017/03/22 01:39:28 CoreProbeSink
alph 2017/03/22 22:09:15 I'll do the InspectorInsrumentation -> CoreProbes
return m_instrumentingAgents.get();
}
@@ -270,7 +270,7 @@ class CORE_EXPORT LocalFrame final : public Frame,
bool m_inViewSourceMode;
- Member<InstrumentingAgents> m_instrumentingAgents;
+ Member<InspectorInstrumentationAgents> m_instrumentingAgents;
Member<PerformanceMonitor> m_performanceMonitor;
InterfaceProvider* const m_interfaceProvider;

Powered by Google App Engine
This is Rietveld 408576698