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

Unified Diff: mojo/system/channel_unittest.cc

Issue 277083003: Mojo: (Theoretically) implement the read side of platform handle passing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: asdf Created 6 years, 7 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/system/channel.cc ('k') | mojo/system/message_in_transit.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/system/channel_unittest.cc
diff --git a/mojo/system/channel_unittest.cc b/mojo/system/channel_unittest.cc
index a96c4d1b906944c5ff8c4e18b3dbe7d7139c7a4d..a392f3513fa60a917b0080037bf686672c9eb695 100644
--- a/mojo/system/channel_unittest.cc
+++ b/mojo/system/channel_unittest.cc
@@ -139,6 +139,11 @@ class MockRawChannelOnInitFails : public RawChannel {
CHECK(false);
return IO_FAILED;
}
+ virtual scoped_ptr<embedder::PlatformHandleVector> GetReadPlatformHandles(
+ size_t, const void*) OVERRIDE {
+ CHECK(false);
+ return scoped_ptr<embedder::PlatformHandleVector>();
+ }
virtual IOResult WriteNoLock(size_t*, size_t*) OVERRIDE {
CHECK(false);
return IO_FAILED;
« no previous file with comments | « mojo/system/channel.cc ('k') | mojo/system/message_in_transit.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698