diff options
Diffstat (limited to 'chrome/common/child_thread.h')
-rw-r--r-- | chrome/common/child_thread.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/chrome/common/child_thread.h b/chrome/common/child_thread.h index ac835cc..5b13ab7 100644 --- a/chrome/common/child_thread.h +++ b/chrome/common/child_thread.h @@ -44,9 +44,6 @@ class ChildThread : public IPC::Channel::Listener, IPC::SyncChannel* channel() { return channel_.get(); } - // Indicates if ChildThread::Send() is on the call stack. - virtual bool InSend() const { return in_send_ != 0; } - // Thread implementation. virtual void Init(); virtual void CleanUp(); @@ -66,8 +63,6 @@ class ChildThread : public IPC::Channel::Listener, // functionality to the consumers of the ChildThread. MessageRouter router_; - int in_send_; - Thread::Options options_; DISALLOW_EVIL_CONSTRUCTORS(ChildThread); |