diff options
Diffstat (limited to 'mojo/edk/system/message_pipe_endpoint.cc')
-rw-r--r-- | mojo/edk/system/message_pipe_endpoint.cc | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/mojo/edk/system/message_pipe_endpoint.cc b/mojo/edk/system/message_pipe_endpoint.cc deleted file mode 100644 index 4b8bc5e..0000000 --- a/mojo/edk/system/message_pipe_endpoint.cc +++ /dev/null @@ -1,52 +0,0 @@ -// Copyright 2013 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "mojo/edk/system/message_pipe_endpoint.h" - -#include "base/logging.h" - -namespace mojo { -namespace system { - -void MessagePipeEndpoint::CancelAllAwakables() { - NOTREACHED(); -} - -MojoResult MessagePipeEndpoint::ReadMessage(UserPointer<void> /*bytes*/, - UserPointer<uint32_t> /*num_bytes*/, - DispatcherVector* /*dispatchers*/, - uint32_t* /*num_dispatchers*/, - MojoReadMessageFlags /*flags*/) { - NOTREACHED(); - return MOJO_RESULT_INTERNAL; -} - -HandleSignalsState MessagePipeEndpoint::GetHandleSignalsState() const { - NOTREACHED(); - return HandleSignalsState(); -} - -MojoResult MessagePipeEndpoint::AddAwakable(Awakable* /*awakable*/, - MojoHandleSignals /*signals*/, - uint32_t /*context*/, - HandleSignalsState* signals_state) { - NOTREACHED(); - if (signals_state) - *signals_state = HandleSignalsState(); - return MOJO_RESULT_INTERNAL; -} - -void MessagePipeEndpoint::RemoveAwakable(Awakable* /*awakable*/, - HandleSignalsState* signals_state) { - NOTREACHED(); - if (signals_state) - *signals_state = HandleSignalsState(); -} - -void MessagePipeEndpoint::Attach(ChannelEndpoint* /*channel_endpoint*/) { - NOTREACHED(); -} - -} // namespace system -} // namespace mojo |