summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_test_sink.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipc_test_sink.cc')
-rw-r--r--ipc/ipc_test_sink.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/ipc/ipc_test_sink.cc b/ipc/ipc_test_sink.cc
index 9e9d1fd..b1a21bf 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_);