| OLD | NEW |
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 /** | 251 /** |
| 252 * Returns a mirror object for the given object. | 252 * Returns a mirror object for the given object. |
| 253 */ | 253 */ |
| 254 static Local<Value> GetMirror(v8::Handle<v8::Value> obj); | 254 static Local<Value> GetMirror(v8::Handle<v8::Value> obj); |
| 255 | 255 |
| 256 /** | 256 /** |
| 257 * Enable the V8 builtin debug agent. The debugger agent will listen on the | 257 * Enable the V8 builtin debug agent. The debugger agent will listen on the |
| 258 * supplied TCP/IP port for remote debugger connection. | 258 * supplied TCP/IP port for remote debugger connection. |
| 259 * \param name the name of the embedding application | 259 * \param name the name of the embedding application |
| 260 * \param port the TCP/IP port to listen on | 260 * \param port the TCP/IP port to listen on |
| 261 * \param wait_for_connection whether V8 should pause on a first breakpoint |
| 262 * allowing remote debugger to connect before anything interesting happened |
| 261 */ | 263 */ |
| 262 static bool EnableAgent(const char* name, int port); | 264 static bool EnableAgent(const char* name, int port, |
| 265 bool wait_for_connection = false); |
| 263 }; | 266 }; |
| 264 | 267 |
| 265 | 268 |
| 266 } // namespace v8 | 269 } // namespace v8 |
| 267 | 270 |
| 268 | 271 |
| 269 #undef EXPORT | 272 #undef EXPORT |
| 270 | 273 |
| 271 | 274 |
| 272 #endif // V8_V8_DEBUG_H_ | 275 #endif // V8_V8_DEBUG_H_ |
| OLD | NEW |