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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorSession.h

Issue 2201623002: [DevTools] Move WorkerInspectorController to WorkerThread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@can-execute-scripts
Patch Set: rebased Created 4 years, 4 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 683a40944c6d54849d9b0d3613db66ef11205ab3..330c2fbf519313bb436753986b5879b0c55d0c27 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorSession.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorSession.h
@@ -37,7 +37,7 @@ public:
virtual ~Client() {}
};
- InspectorSession(Client*, InstrumentingAgents*, int sessionId, bool autoFlush, V8Inspector*, int contextGroupId, const String* savedState);
+ InspectorSession(Client*, InstrumentingAgents*, int sessionId, V8Inspector*, int contextGroupId, const String* savedState);
~InspectorSession() override;
int sessionId() { return m_sessionId; }
V8InspectorSession* v8Session() { return m_v8Session.get(); }
@@ -62,7 +62,6 @@ private:
Client* m_client;
std::unique_ptr<V8InspectorSession> m_v8Session;
int m_sessionId;
- bool m_autoFlush;
bool m_disposed;
Member<InstrumentingAgents> m_instrumentingAgents;
std::unique_ptr<protocol::UberDispatcher> m_inspectorBackendDispatcher;

Powered by Google App Engine
This is Rietveld 408576698