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

Side by Side Diff: remoting/protocol/transport.cc

Issue 1510343002: Add WebrtcConnectionToClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@webrtc_thread
Patch Set: Created 5 years 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 | « remoting/protocol/transport.h ('k') | remoting/protocol/video_stream.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "remoting/protocol/transport.h" 5 #include "remoting/protocol/transport.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace remoting { 9 namespace remoting {
10 namespace protocol { 10 namespace protocol {
11 11
12 // static 12 // static
13 std::string TransportRoute::GetTypeString(RouteType type) { 13 std::string TransportRoute::GetTypeString(RouteType type) {
14 switch (type) { 14 switch (type) {
15 case DIRECT: 15 case DIRECT:
16 return "direct"; 16 return "direct";
17 case STUN: 17 case STUN:
18 return "stun"; 18 return "stun";
19 case RELAY: 19 case RELAY:
20 return "relay"; 20 return "relay";
21 } 21 }
22 NOTREACHED(); 22 NOTREACHED();
23 return std::string(); 23 return std::string();
24 } 24 }
25 25
26 TransportRoute::TransportRoute() : type(DIRECT) { 26 TransportRoute::TransportRoute() : type(DIRECT) {}
27 } 27 TransportRoute::~TransportRoute() {}
28 28
29 TransportRoute::~TransportRoute() { 29 WebrtcTransport* Transport::AsWebrtcTransport() {
30 return nullptr;
30 } 31 }
31 32
32 } // namespace protocol 33 } // namespace protocol
33 } // namespace remoting 34 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/transport.h ('k') | remoting/protocol/video_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698