Index: src/debug-agent.h |
diff --git a/src/debug-agent.h b/src/debug-agent.h |
index e78ed67932232bd76611bf2e6f69568cc38a2a1f..fd1e0fe0df5e4f2d47a5a80bb069edffbfda4fa0 100644 |
--- a/src/debug-agent.h |
+++ b/src/debug-agent.h |
@@ -43,9 +43,9 @@ class DebuggerAgentSession; |
// handles connection from a remote debugger. |
class DebuggerAgent: public Thread { |
public: |
- DebuggerAgent(const char* name, int port) |
+ DebuggerAgent(Isolate* isolate, const char* name, int port) |
: Thread(name), |
- isolate_(Isolate::Current()), |
+ isolate_(isolate), |
name_(StrDup(name)), port_(port), |
server_(OS::CreateSocket()), terminate_(false), |
session_(NULL), |