summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_test_base.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-31 02:29:20 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-31 02:29:20 +0000
commit5e9e96aae1a78860b984124519f720163fc52a33 (patch)
treed29e8de21b25f313cf93d1c939fc1dd3083b92f4 /ipc/ipc_test_base.h
parent16efcd1cd7d75552d6ef14632030520d9bb3986c (diff)
downloadchromium_src-5e9e96aae1a78860b984124519f720163fc52a33.zip
chromium_src-5e9e96aae1a78860b984124519f720163fc52a33.tar.gz
chromium_src-5e9e96aae1a78860b984124519f720163fc52a33.tar.bz2
Move MessageLoop to base namespace.
This adds a "using" to the header to avoid having to update everything at once. However, all forward declares and the locations that use the forward declares need to be updated (since they don't see the using in message_loop.h). BUG= Review URL: https://codereview.chromium.org/13243003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@191566 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_test_base.h')
-rw-r--r--ipc/ipc_test_base.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ipc/ipc_test_base.h b/ipc/ipc_test_base.h
index 2afb720..2ce2d76 100644
--- a/ipc/ipc_test_base.h
+++ b/ipc/ipc_test_base.h
@@ -15,7 +15,9 @@
#include "ipc/ipc_channel_proxy.h"
#include "ipc/ipc_multiprocess_test.h"
+namespace base {
class MessageLoopForIO;
+}
// A test fixture for multiprocess IPC tests. Such tests include a "client" side
// (running in a separate process). The same client may be shared between
@@ -82,7 +84,7 @@ class IPCTestBase : public base::MultiProcessTest {
private:
std::string test_client_name_;
- scoped_ptr<MessageLoopForIO> message_loop_;
+ scoped_ptr<base::MessageLoopForIO> message_loop_;
scoped_ptr<IPC::Channel> channel_;
scoped_ptr<IPC::ChannelProxy> channel_proxy_;