| Index: src/d8-debug.cc
|
| diff --git a/src/d8-debug.cc b/src/d8-debug.cc
|
| index 3df869348b4a6bcb63d955a86e3bed968e95b01a..8a3886c676b7524e0a6f99daf92165965f1c094c 100644
|
| --- a/src/d8-debug.cc
|
| +++ b/src/d8-debug.cc
|
| @@ -159,7 +159,7 @@ void HandleDebugEvent(DebugEvent event,
|
|
|
|
|
| void RunRemoteDebugger(int port) {
|
| - RemoteDebugger debugger(i::Isolate::Current(), port);
|
| + RemoteDebugger debugger(port);
|
| debugger.Run();
|
| }
|
|
|
| @@ -186,11 +186,11 @@ void RemoteDebugger::Run() {
|
| }
|
|
|
| // Start the receiver thread.
|
| - ReceiverThread receiver(isolate_, this);
|
| + ReceiverThread receiver(this);
|
| receiver.Start();
|
|
|
| // Start the keyboard thread.
|
| - KeyboardThread keyboard(isolate_, this);
|
| + KeyboardThread keyboard(this);
|
| keyboard.Start();
|
| PrintPrompt();
|
|
|
|
|