diff options
author | yurys@google.com <yurys@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-02 06:54:15 +0000 |
---|---|---|
committer | yurys@google.com <yurys@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-02 06:54:15 +0000 |
commit | ce99295021b01038cd03d67e98b920c58c250578 (patch) | |
tree | bc091b87a43470695869eb79a308f4830993212e /chrome/renderer/devtools_agent.h | |
parent | cd8f9778702ae1d7ff1585b73ea2a422e5375865 (diff) | |
download | chromium_src-ce99295021b01038cd03d67e98b920c58c250578.zip chromium_src-ce99295021b01038cd03d67e98b920c58c250578.tar.gz chromium_src-ce99295021b01038cd03d67e98b920c58c250578.tar.bz2 |
Debugger output is now handled on the render thread.
Review URL: http://codereview.chromium.org/60013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13007 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/devtools_agent.h')
-rw-r--r-- | chrome/renderer/devtools_agent.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/chrome/renderer/devtools_agent.h b/chrome/renderer/devtools_agent.h index 24bba31..9059542 100644 --- a/chrome/renderer/devtools_agent.h +++ b/chrome/renderer/devtools_agent.h @@ -38,13 +38,9 @@ class DevToolsAgent : public IPC::ChannelProxy::MessageFilter, 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 @@ class DevToolsAgent : public IPC::ChannelProxy::MessageFilter, RenderView* view_; MessageLoop* view_loop_; - IPC::Channel* channel_; MessageLoop* io_loop_; DISALLOW_COPY_AND_ASSIGN(DevToolsAgent); |