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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorSession.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
Index: third_party/WebKit/Source/core/inspector/InspectorSession.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorSession.h b/third_party/WebKit/Source/core/inspector/InspectorSession.h
index 7688829ecbe84de81584d6135b1d6b21e1bd092b..28b8ff29016e60bdaa9d0a3574485f17ade273dc 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorSession.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorSession.h
@@ -38,9 +38,8 @@ public:
virtual ~Client() {}
};
- InspectorSession(Client*, InspectedFrames*, int sessionId, bool autoFlush);
+ InspectorSession(Client*, InspectedFrames*, InstrumentingAgents*, int sessionId, bool autoFlush);
int sessionId() { return m_sessionId; }
- InstrumentingAgents* instrumentingAgents() { return m_instrumentingAgents.get(); }
void append(InspectorAgent*);
void attach(V8InspectorSession*, const String* savedState);

Powered by Google App Engine
This is Rietveld 408576698