Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: src/api.cc

Issue 481005: Extend DebugAgent API with AsyncDebugRunner (Closed)
Patch Set: documentation Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/v8-debug.h ('k') | src/debug.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/api.cc
diff --git a/src/api.cc b/src/api.cc
index 93807a7c72c1401f7c7b5faa92b560aae07f640b..f4d0eea7c255600d13138f0267e7366eba39b38e 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -3827,8 +3827,9 @@ 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,
+ AsyncDebugRunner async_debug_runner) {
+ return i::Debugger::StartAgent(name, port, async_debug_runner);
}
#endif // ENABLE_DEBUGGER_SUPPORT
« no previous file with comments | « include/v8-debug.h ('k') | src/debug.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698