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

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

Issue 1924173002: [DevTools] Improve performance of InstrumentingAgents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile Created 4 years, 8 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
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 eb05df26d52ccd4f71b4f73fe338e82810dc2dd7..b97e75599f2e1e10abd0ba143b8b99f3c813c038 100644
--- a/third_party/WebKit/Source/core/frame/LocalFrame.h
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.h
@@ -33,7 +33,6 @@
#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"
@@ -62,6 +61,7 @@ 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();
- InstrumentingSessions* instrumentingSessions() { return m_instrumentingSessions.get(); }
+ InstrumentingAgents* instrumentingAgents() { return m_instrumentingAgents.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<InstrumentingSessions> m_instrumentingSessions;
+ Member<InstrumentingAgents> m_instrumentingAgents;
ServiceRegistry* const m_serviceRegistry;
};
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698