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

Unified Diff: ipc/ipc_test_sink.cc

Issue 382333002: Introduce ChannelMojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
Index: ipc/ipc_test_sink.cc
diff --git a/ipc/ipc_test_sink.cc b/ipc/ipc_test_sink.cc
index 9e9d1fd3c2445191f4eb6e3840e7adf93a1b8f96..b1a21bfd4807a35b8409cc225ea89c05f91a8f2f 100644
--- a/ipc/ipc_test_sink.cc
+++ b/ipc/ipc_test_sink.cc
@@ -35,6 +35,15 @@ base::ProcessId TestSink::GetPeerPID() const {
return base::ProcessId();
}
+base::ProcessId TestSink::GetSelfPID() const {
+ NOTIMPLEMENTED();
+ return base::ProcessId();
+}
+
+ChannelHandle TestSink::TakePipeHandle() {
+ NOTIMPLEMENTED();
+ return ChannelHandle();
+}
bool TestSink::OnMessageReceived(const Message& msg) {
ObserverListBase<Listener>::Iterator it(filter_list_);
« ipc/ipc_channel.h ('K') | « ipc/ipc_test_sink.h ('k') | ipc/mojo/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698