summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/debugger/debugger_io_socket.cc2
-rw-r--r--chrome/browser/debugger/debugger_io_socket.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/debugger/debugger_io_socket.cc b/chrome/browser/debugger/debugger_io_socket.cc
index 7b5e013c..375787e 100644
--- a/chrome/browser/debugger/debugger_io_socket.cc
+++ b/chrome/browser/debugger/debugger_io_socket.cc
@@ -56,7 +56,7 @@ void DebuggerInputOutputSocket::Start(DebuggerShell* debugger) {
void DebuggerInputOutputSocket::StartListening() {
DCHECK(MessageLoop::current() == io_loop_);
- server_ = TelnetServer::Listen("127.0.0.1", port_, this, io_loop_);
+ server_ = TelnetServer::Listen("127.0.0.1", port_, this);
}
DebuggerInputOutputSocket::~DebuggerInputOutputSocket() {
diff --git a/chrome/browser/debugger/debugger_io_socket.h b/chrome/browser/debugger/debugger_io_socket.h
index 50b1115..2709006 100644
--- a/chrome/browser/debugger/debugger_io_socket.h
+++ b/chrome/browser/debugger/debugger_io_socket.h
@@ -34,6 +34,7 @@
#include "net/base/telnet_server.h"
class DebuggerShell;
+class MessageLoop;
// Interaction with the underlying Socket object MUST happen in the IO thread.
// However, Debugger will call into this object from the main thread. As a result