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

Unified Diff: chrome/renderer/devtools_agent.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.h ('k') | webkit/glue/devtools/debugger_agent_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/devtools_agent.cc
===================================================================
--- chrome/renderer/devtools_agent.cc (revision 12952)
+++ chrome/renderer/devtools_agent.cc (working copy)
@@ -32,7 +32,6 @@
: routing_id_(routing_id),
view_(view),
view_loop_(view_loop),
- channel_(NULL),
io_loop_(NULL) {
}
@@ -46,30 +45,20 @@
}
void DevToolsAgent::Send(const IPC::Message& tools_client_message) {
- // It's possible that this will get cleared out from under us.
- MessageLoop* io_loop = io_loop_;
- if (!io_loop)
+ DCHECK(MessageLoop::current() == view_loop_);
+ if (!view_) {
return;
+ }
IPC::Message* m = new ViewHostMsg_ForwardToDevToolsClient(
routing_id_,
tools_client_message);
- io_loop->PostTask(FROM_HERE, NewRunnableMethod(
- this, &DevToolsAgent::SendFromIOThread, m));
+ view_->Send(m);
}
-void DevToolsAgent::SendFromIOThread(IPC::Message* message) {
- if (channel_) {
- channel_->Send(message);
- } else {
- delete message;
- }
-}
-
// Called on the IO thread.
void DevToolsAgent::OnFilterAdded(IPC::Channel* channel) {
io_loop_ = MessageLoop::current();
- channel_ = channel;
}
// Called on the IO thread.
@@ -79,6 +68,10 @@
if (message.routing_id() != routing_id_)
return false;
+ // TODO(yurys): only DebuggerCommand message is handled on the IO thread
+ // all other messages could be handled in RenderView::OnMessageReceived. With
+ // that approach we wouldn't have to call view_loop_->PostTask for each of the
+ // messages.
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(DevToolsAgent, message)
IPC_MESSAGE_HANDLER(DevToolsAgentMsg_Attach, OnAttach)
@@ -95,7 +88,6 @@
// Called on the IO thread.
void DevToolsAgent::OnFilterRemoved() {
io_loop_ = NULL;
- channel_ = NULL;
}
void DevToolsAgent::EvaluateScript(const std::wstring& script) {
« no previous file with comments | « chrome/renderer/devtools_agent.h ('k') | webkit/glue/devtools/debugger_agent_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698