| Index: third_party/mojo/src/mojo/edk/system/message_pipe_endpoint.cc
|
| diff --git a/third_party/mojo/src/mojo/edk/system/message_pipe_endpoint.cc b/third_party/mojo/src/mojo/edk/system/message_pipe_endpoint.cc
|
| deleted file mode 100644
|
| index 8b1ef386c91089fb82d89bd2cc7ced0e7639e21f..0000000000000000000000000000000000000000
|
| --- a/third_party/mojo/src/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 "third_party/mojo/src/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*/,
|
| - uintptr_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
|
|
|