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

Side by Side Diff: mojo/system/message_pipe_endpoint.cc

Issue 27060003: Mojo: Abstract out the endpoints of MessagePipes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « mojo/system/message_pipe_endpoint.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "mojo/system/message_pipe_endpoint.h"
6
7 #include "base/logging.h"
8
9 namespace mojo {
10 namespace system {
11
12 void MessagePipeEndpoint::CancelAllWaiters() {
13 NOTREACHED();
14 }
15
16 void MessagePipeEndpoint::Close() {
17 NOTREACHED();
18 }
19
20 MojoResult MessagePipeEndpoint::ReadMessage(
21 void* /*bytes*/, uint32_t* /*num_bytes*/,
22 MojoHandle* /*handles*/, uint32_t* /*num_handles*/,
23 MojoReadMessageFlags /*flags*/) {
24 NOTREACHED();
25 return MOJO_RESULT_INTERNAL;
26 }
27
28 MojoResult MessagePipeEndpoint::AddWaiter(Waiter* /*waiter*/,
29 MojoWaitFlags /*flags*/,
30 MojoResult /*wake_result*/) {
31 NOTREACHED();
32 return MOJO_RESULT_INTERNAL;
33 }
34
35 void MessagePipeEndpoint::RemoveWaiter(Waiter* /*waiter*/) {
36 NOTREACHED();
37 }
38
39 } // namespace system
40 } // namespace mojo
41
OLDNEW
« no previous file with comments | « mojo/system/message_pipe_endpoint.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698