| OLD | NEW |
| 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 ""; | 23 return std::string(); |
| 24 } | 24 } |
| 25 | 25 |
| 26 TransportRoute::TransportRoute() : type(DIRECT) { | 26 TransportRoute::TransportRoute() : type(DIRECT) { |
| 27 } | 27 } |
| 28 | 28 |
| 29 TransportRoute::~TransportRoute() { | 29 TransportRoute::~TransportRoute() { |
| 30 } | 30 } |
| 31 | 31 |
| 32 } // namespace protocol | 32 } // namespace protocol |
| 33 } // namespace remoting | 33 } // namespace remoting |
| OLD | NEW |