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

Unified Diff: webkit/glue/devtools/debugger_agent_manager.cc

Issue 60013: Debug message handler is now called on the render thread (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 months 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 | « chrome/renderer/devtools_agent.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/debugger_agent_manager.cc
===================================================================
--- webkit/glue/devtools/debugger_agent_manager.cc (revision 12952)
+++ webkit/glue/devtools/debugger_agent_manager.cc (working copy)
@@ -35,7 +35,10 @@
#if USE(V8)
if (!attached_agents_) {
attached_agents_ = new AttachedAgentsSet();
- v8::Debug::SetMessageHandler(&DebuggerAgentManager::V8DebugMessageHandler);
+ v8::Debug::SetMessageHandler(
+ &DebuggerAgentManager::V8DebugMessageHandler,
+ NULL, /* no additional data */
+ false /* don't create separate thread for sending debugger output */);
}
attached_agents_->add(debugger_agent);
#endif
« no previous file with comments | « chrome/renderer/devtools_agent.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698