diff options
author | Eugene Ostroukhov <eostroukhov@google.com> | 2018-05-21 16:59:04 -0700 |
---|---|---|
committer | Anna Henningsen <anna@addaleax.net> | 2018-07-13 23:42:50 +0200 |
commit | 39977db7c015e94d33885249f50e62fa8b1f1bb9 (patch) | |
tree | fb330cb04106d7a030b1599549f5503c3ea086ea /src/inspector_socket_server.h | |
parent | 9374a83d6983710844c5436f32c14242ba600a20 (diff) | |
download | node-new-39977db7c015e94d33885249f50e62fa8b1f1bb9.tar.gz |
inspector: split main thread interface from transport
Workers debugging will require interfacing between the "main" inspector
and per-worker isolate inspectors. This is consistent with what WS
interface does. This change is a refactoring change and does not change
the functionality.
PR-URL: https://github.com/nodejs/node/pull/21182
Fixes: https://github.com/nodejs/node/issues/21725
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/inspector_socket_server.h')
-rw-r--r-- | src/inspector_socket_server.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/inspector_socket_server.h b/src/inspector_socket_server.h index bbc2195095..271be6ec55 100644 --- a/src/inspector_socket_server.h +++ b/src/inspector_socket_server.h @@ -54,10 +54,6 @@ class InspectorSocketServer { void Send(int session_id, const std::string& message); // kKill void TerminateConnections(); - // kAcceptSession - void AcceptSession(int session_id); - // kDeclineSession - void DeclineSession(int session_id); int Port() const; // Session connection lifecycle |