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

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

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: sinkFor -> toCoreProbesSink 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 a2ee86ecae24095cca79b56ad84f1cf42a499e3e..f0e7a06e74d0e69c3a9fd3f68a34691c34632def 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 InspectorInstrumentationAgents;
+class CoreProbesSink;
class InterfaceProvider;
class InterfaceRegistry;
class IntPoint;
@@ -164,9 +164,7 @@ class CORE_EXPORT LocalFrame final : public Frame,
// behavior for detached windows.
bool isCrossOriginSubframe() const;
- InspectorInstrumentationAgents* instrumentingAgents() {
- return m_instrumentingAgents.get();
- }
+ CoreProbesSink* instrumentingAgents() { return m_instrumentingAgents.get(); }
// =========================================================================
// All public functions below this point are candidates to move out of
@@ -270,7 +268,7 @@ class CORE_EXPORT LocalFrame final : public Frame,
bool m_inViewSourceMode;
- Member<InspectorInstrumentationAgents> m_instrumentingAgents;
+ Member<CoreProbesSink> m_instrumentingAgents;
Member<PerformanceMonitor> m_performanceMonitor;
InterfaceProvider* const m_interfaceProvider;

Powered by Google App Engine
This is Rietveld 408576698