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

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

Issue 541233002: Mojo: Factor Channel::EndpointInfo out to ChannelEndpoint. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stupid msvs Created 6 years, 3 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
« no previous file with comments | « mojo/system/channel_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 2014 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/channel_endpoint.h"
6
7 #include "mojo/system/channel.h"
8 #include "mojo/system/message_in_transit_queue.h"
9
10 namespace mojo {
11 namespace system {
12
13 ChannelEndpoint::ChannelEndpoint(MessagePipe* message_pipe, unsigned port)
14 : state_(STATE_NORMAL), message_pipe_(message_pipe), port_(port) {
15 }
16
17 ChannelEndpoint::~ChannelEndpoint() {
18 }
19
20 } // namespace system
21 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/system/channel_endpoint.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698