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

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

Issue 13145003: Rewrite std::string("") to std::string(), Linux edition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ugh Created 7 years, 8 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
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 ""; 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
OLDNEW
« no previous file with comments | « remoting/protocol/third_party_authenticator_unittest.cc ('k') | sandbox/linux/tests/unit_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698