diff options
Diffstat (limited to 'content/common/child_thread.h')
-rw-r--r-- | content/common/child_thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/common/child_thread.h b/content/common/child_thread.h index f2ac864..e1d34e8 100644 --- a/content/common/child_thread.h +++ b/content/common/child_thread.h @@ -42,6 +42,8 @@ class ChildThread : public IPC::Channel::Listener, IPC::Channel::Listener* ResolveRoute(int32 routing_id); + IPC::SyncChannel* channel() { return channel_.get(); } + // Creates a ResourceLoaderBridge. // Tests can override this method if they want a custom loading behavior. virtual webkit_glue::ResourceLoaderBridge* CreateBridge( @@ -84,8 +86,6 @@ class ChildThread : public IPC::Channel::Listener, virtual void OnSetIPCLoggingEnabled(bool enable); #endif - IPC::SyncChannel* channel() { return channel_.get(); } - void set_on_channel_error_called(bool on_channel_error_called) { on_channel_error_called_ = on_channel_error_called; } |