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

Unified Diff: third_party/mojo/src/mojo/edk/system/message_pipe_endpoint.cc

Issue 1676913002: [mojo] Delete third_party/mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: let's try that again Created 4 years, 10 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: 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

Powered by Google App Engine
This is Rietveld 408576698