OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MOJO_SYSTEM_MESSAGE_PIPE_H_ | 5 #ifndef MOJO_SYSTEM_MESSAGE_PIPE_H_ |
6 #define MOJO_SYSTEM_MESSAGE_PIPE_H_ | 6 #define MOJO_SYSTEM_MESSAGE_PIPE_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 // This is called by the dispatcher to convert a local endpoint to a proxy | 88 // This is called by the dispatcher to convert a local endpoint to a proxy |
89 // endpoint. | 89 // endpoint. |
90 scoped_refptr<ChannelEndpoint> ConvertLocalToProxy(unsigned port); | 90 scoped_refptr<ChannelEndpoint> ConvertLocalToProxy(unsigned port); |
91 | 91 |
92 // This is used by |Channel| to enqueue messages (typically to a | 92 // This is used by |Channel| to enqueue messages (typically to a |
93 // |LocalMessagePipeEndpoint|). Unlike |WriteMessage()|, |port| is the | 93 // |LocalMessagePipeEndpoint|). Unlike |WriteMessage()|, |port| is the |
94 // *destination* port. | 94 // *destination* port. |
95 MojoResult EnqueueMessage(unsigned port, | 95 MojoResult EnqueueMessage(unsigned port, |
96 scoped_ptr<MessageInTransit> message); | 96 scoped_ptr<MessageInTransit> message); |
97 | 97 |
98 // These are used by |Channel|. | 98 // This is used by |Channel|. TODO(vtl): Remove it. |
99 void Run(unsigned port); | |
100 void OnRemove(unsigned port); | 99 void OnRemove(unsigned port); |
101 | 100 |
102 private: | 101 private: |
103 MessagePipe(); | 102 MessagePipe(); |
104 | 103 |
105 friend class base::RefCountedThreadSafe<MessagePipe>; | 104 friend class base::RefCountedThreadSafe<MessagePipe>; |
106 virtual ~MessagePipe(); | 105 virtual ~MessagePipe(); |
107 | 106 |
108 // This is used internally by |WriteMessage()| and by |EnqueueMessage()|. | 107 // This is used internally by |WriteMessage()| and by |EnqueueMessage()|. |
109 // |transports| may be non-null only if it's nonempty and |message| has no | 108 // |transports| may be non-null only if it's nonempty and |message| has no |
(...skipping 17 matching lines...) Expand all Loading... |
127 base::Lock lock_; // Protects the following members. | 126 base::Lock lock_; // Protects the following members. |
128 scoped_ptr<MessagePipeEndpoint> endpoints_[2]; | 127 scoped_ptr<MessagePipeEndpoint> endpoints_[2]; |
129 | 128 |
130 DISALLOW_COPY_AND_ASSIGN(MessagePipe); | 129 DISALLOW_COPY_AND_ASSIGN(MessagePipe); |
131 }; | 130 }; |
132 | 131 |
133 } // namespace system | 132 } // namespace system |
134 } // namespace mojo | 133 } // namespace mojo |
135 | 134 |
136 #endif // MOJO_SYSTEM_MESSAGE_PIPE_H_ | 135 #endif // MOJO_SYSTEM_MESSAGE_PIPE_H_ |
OLD | NEW |