Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1323)

Unified Diff: mojo/edk/system/remote_message_pipe_unittest.cc

Issue 852113002: Remove RawChannel::Init() and Channel::Init() failure cases. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/edk/system/raw_channel_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/system/remote_message_pipe_unittest.cc
diff --git a/mojo/edk/system/remote_message_pipe_unittest.cc b/mojo/edk/system/remote_message_pipe_unittest.cc
index bf608fbedc5cd15eccab3a0e4fa8915cff219b15..1860c239e03e23663cfcb035fabe9adac3fcf5b8 100644
--- a/mojo/edk/system/remote_message_pipe_unittest.cc
+++ b/mojo/edk/system/remote_message_pipe_unittest.cc
@@ -127,8 +127,8 @@ class RemoteMessagePipeTest : public testing::Test {
CHECK(!channels_[channel_index]);
channels_[channel_index] = new Channel(&platform_support_);
- CHECK(channels_[channel_index]->Init(
- RawChannel::Create(platform_handles_[channel_index].Pass())));
+ channels_[channel_index]->Init(
+ RawChannel::Create(platform_handles_[channel_index].Pass()));
}
void BootstrapChannelEndpointsOnIOThread(scoped_refptr<ChannelEndpoint> ep0,
« no previous file with comments | « mojo/edk/system/raw_channel_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698