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

Unified Diff: chrome/renderer/devtools_agent.h

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 | « no previous file | chrome/renderer/devtools_agent.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/devtools_agent.h
===================================================================
--- chrome/renderer/devtools_agent.h (revision 12952)
+++ chrome/renderer/devtools_agent.h (working copy)
@@ -38,13 +38,9 @@
void RenderViewDestroyed();
private:
- // Sends message to DevToolsClient. May be called on any thread.
+ // Sends message to DevToolsClient. Should be called on the render thread.
void Send(const IPC::Message& tools_client_message);
- // Sends message to DevToolsClient. Must be called on IO thread. Takes
- // ownership of the message.
- void SendFromIOThread(IPC::Message* message);
-
// IPC::ChannelProxy::MessageFilter overrides. Called on IO thread.
virtual void OnFilterAdded(IPC::Channel* channel);
virtual bool OnMessageReceived(const IPC::Message& message);
@@ -71,7 +67,6 @@
RenderView* view_;
MessageLoop* view_loop_;
- IPC::Channel* channel_;
MessageLoop* io_loop_;
DISALLOW_COPY_AND_ASSIGN(DevToolsAgent);
« no previous file with comments | « no previous file | chrome/renderer/devtools_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698