Index: ipc/ipc_test_base.h |
diff --git a/ipc/ipc_test_base.h b/ipc/ipc_test_base.h |
index ce3328ad1058d6544f88779e42bda308735fe645..701779e56088dd3f294b75813d849ef316d038f0 100644 |
--- a/ipc/ipc_test_base.h |
+++ b/ipc/ipc_test_base.h |
@@ -16,7 +16,7 @@ |
#include "ipc/ipc_multiprocess_test.h" |
namespace base { |
-class MessageLoopForIO; |
+class MessageLoop; |
} |
// A test fixture for multiprocess IPC tests. Such tests include a "client" side |
@@ -86,11 +86,12 @@ class IPCTestBase : public base::MultiProcessTest { |
IPC::ChannelProxy* channel_proxy() { return channel_proxy_.get(); } |
const base::ProcessHandle& client_process() const { return client_process_; } |
- scoped_refptr<base::TaskRunner> io_thread_task_runner(); |
+ scoped_refptr<base::TaskRunner> task_runner(); |
+ void set_message_loop(scoped_ptr<base::MessageLoop> loop); |
private: |
std::string test_client_name_; |
- scoped_ptr<base::MessageLoopForIO> message_loop_; |
+ scoped_ptr<base::MessageLoop> message_loop_; |
scoped_ptr<IPC::Channel> channel_; |
scoped_ptr<IPC::ChannelProxy> channel_proxy_; |