Index: src/debug-agent.cc |
diff --git a/src/debug-agent.cc b/src/debug-agent.cc |
index fc16bf9eb5267bdee85381fce999b56da52cf1d9..811c00e0cc63a1dd4985df0ccbeae61810fe2044 100644 |
--- a/src/debug-agent.cc |
+++ b/src/debug-agent.cc |
@@ -106,7 +106,7 @@ static const char* kCreateSessionMessage = |
"Remote debugging session already active\r\n"; |
void DebuggerAgent::CreateSession(Socket* client) { |
- ScopedLock with(&session_access_); |
+ ScopedLock with(session_access_); |
// If another session is already established terminate this one. |
if (session_ != NULL) { |
@@ -123,7 +123,7 @@ void DebuggerAgent::CreateSession(Socket* client) { |
void DebuggerAgent::CloseSession() { |
- ScopedLock with(&session_access_); |
+ ScopedLock with(session_access_); |
// Terminate the session. |
if (session_ != NULL) { |
@@ -136,7 +136,7 @@ void DebuggerAgent::CloseSession() { |
void DebuggerAgent::DebuggerMessage(const v8::Debug::Message& message) { |
- ScopedLock with(&session_access_); |
+ ScopedLock with(session_access_); |
// Forward the message handling to the session. |
if (session_ != NULL) { |
@@ -154,7 +154,7 @@ void DebuggerAgent::OnSessionClosed(DebuggerAgentSession* session) { |
} |
// Terminate the session. |
- ScopedLock with(&session_access_); |
+ ScopedLock with(session_access_); |
ASSERT(session == session_); |
if (session == session_) { |
session_->Shutdown(); |