| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index d793b9f11c8e004060651b7fbfebf05254e6e4ff..ab5d0a5608e356ff79e2fdae76fe54234de042b2 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -3741,8 +3741,8 @@ Local<Value> Debug::GetMirror(v8::Handle<v8::Value> obj) {
|
| }
|
|
|
|
|
| -bool Debug::EnableAgent(const char* name, int port) {
|
| - return i::Debugger::StartAgent(name, port);
|
| +bool Debug::EnableAgent(const char* name, int port, bool wait_for_connection) {
|
| + return i::Debugger::StartAgent(name, port, wait_for_connection);
|
| }
|
| #endif // ENABLE_DEBUGGER_SUPPORT
|
|
|
|
|