summaryrefslogtreecommitdiffstats
path: root/remoting/host/native_messaging
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-15 22:24:33 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-15 22:24:33 +0000
commit1ef9001ca9c05ce22d2140c46856bbe52e61a6c5 (patch)
tree9a89a909d7815a001cae2b7e7f7e79b494e507a9 /remoting/host/native_messaging
parent880a57f7ad4f7812e65006cdf6e872f3bce01db6 (diff)
downloadchromium_src-1ef9001ca9c05ce22d2140c46856bbe52e61a6c5.zip
chromium_src-1ef9001ca9c05ce22d2140c46856bbe52e61a6c5.tar.gz
chromium_src-1ef9001ca9c05ce22d2140c46856bbe52e61a6c5.tar.bz2
Removes MessageLoop::TYPE_XXX where possible
This is part of attempting to get rid of MessageLoop::Type enum. BUG=none TEST=none R=darin@chromium.org Review URL: https://codereview.chromium.org/136683004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244996 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/native_messaging')
-rw-r--r--remoting/host/native_messaging/native_messaging_reader_unittest.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/remoting/host/native_messaging/native_messaging_reader_unittest.cc b/remoting/host/native_messaging/native_messaging_reader_unittest.cc
index 26ed78d..35af8a2 100644
--- a/remoting/host/native_messaging/native_messaging_reader_unittest.cc
+++ b/remoting/host/native_messaging/native_messaging_reader_unittest.cc
@@ -46,12 +46,11 @@ class NativeMessagingReaderTest : public testing::Test {
private:
// MessageLoop declared here, since the NativeMessageReader ctor requires a
// MessageLoop to have been created.
- base::MessageLoop message_loop_;
+ base::MessageLoopForIO message_loop_;
base::RunLoop run_loop_;
};
-NativeMessagingReaderTest::NativeMessagingReaderTest()
- : message_loop_(base::MessageLoop::TYPE_IO) {
+NativeMessagingReaderTest::NativeMessagingReaderTest() {
}
NativeMessagingReaderTest::~NativeMessagingReaderTest() {}