| Index: chrome/renderer/render_thread.h
|
| ===================================================================
|
| --- chrome/renderer/render_thread.h (revision 10288)
|
| +++ chrome/renderer/render_thread.h (working copy)
|
| @@ -31,9 +31,6 @@
|
|
|
| virtual bool Send(IPC::Message* msg) = 0;
|
|
|
| - // True if currently sending a message.
|
| - virtual bool InSend() const = 0;
|
| -
|
| // Called to add or remove a listener for a particular message routing ID.
|
| // These methods normally get delegated to a MessageRouter.
|
| virtual void AddRoute(int32 routing_id, IPC::Channel::Listener* listener) = 0;
|
| @@ -70,10 +67,6 @@
|
| return ChildThread::Send(msg);
|
| }
|
|
|
| - virtual bool InSend() const {
|
| - return ChildThread::InSend();
|
| - }
|
| -
|
| virtual void AddRoute(int32 routing_id, IPC::Channel::Listener* listener) {
|
| return ChildThread::AddRoute(routing_id, listener);
|
| }
|
|
|