| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index 93807a7c72c1401f7c7b5faa92b560aae07f640b..46a034ec2bb5cc15df52ac61b36aced8a4d8a637 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -3827,8 +3827,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
|
|
|
|
|