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 3dd0a7413b7d2de39f1c54b2c320f70826f16095..eb05df26d52ccd4f71b4f73fe338e82810dc2dd7 100644 |
--- a/third_party/WebKit/Source/core/frame/LocalFrame.h |
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.h |
@@ -33,6 +33,7 @@ |
#include "core/frame/Frame.h" |
#include "core/frame/LocalFrameLifecycleNotifier.h" |
#include "core/frame/LocalFrameLifecycleObserver.h" |
+#include "core/inspector/InstrumentingSessions.h" |
#include "core/loader/FrameLoader.h" |
#include "core/page/FrameTree.h" |
#include "core/paint/PaintPhase.h" |
@@ -61,7 +62,6 @@ class HTMLPlugInElement; |
class InputMethodController; |
class IntPoint; |
class IntSize; |
-class InstrumentingAgents; |
class LayoutViewItem; |
class LocalDOMWindow; |
class NavigationScheduler; |
@@ -134,7 +134,7 @@ public: |
// should be updated to avoid storing things on the main frame. |
LocalFrame* localFrameRoot(); |
- InstrumentingAgents* instrumentingAgents() const { return m_instrumentingAgents.get(); } |
+ InstrumentingSessions* instrumentingSessions() { return m_instrumentingSessions.get(); } |
// ======== All public functions below this point are candidates to move out of LocalFrame into another class. ======== |
@@ -223,7 +223,7 @@ private: |
bool m_inViewSourceMode; |
- Member<InstrumentingAgents> m_instrumentingAgents; |
+ Member<InstrumentingSessions> m_instrumentingSessions; |
ServiceRegistry* const m_serviceRegistry; |
}; |