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

Side by Side Diff: webrtc/p2p/client/httpportallocator.cc

Issue 1443273002: cleanup: get rid of basicdefs.h include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 1 month 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 | « webrtc/p2p/base/transportdescription.cc ('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
1 /* 1 /*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include "webrtc/p2p/client/httpportallocator.h" 11 #include "webrtc/p2p/client/httpportallocator.h"
12 12
13 #include <algorithm> 13 #include <algorithm>
14 #include <map> 14 #include <map>
15 15
16 #include "webrtc/base/basicdefs.h"
17 #include "webrtc/base/common.h" 16 #include "webrtc/base/common.h"
18 #include "webrtc/base/helpers.h" 17 #include "webrtc/base/helpers.h"
19 #include "webrtc/base/httpcommon.h" 18 #include "webrtc/base/httpcommon.h"
20 #include "webrtc/base/logging.h" 19 #include "webrtc/base/logging.h"
21 #include "webrtc/base/nethelpers.h" 20 #include "webrtc/base/nethelpers.h"
22 #include "webrtc/base/signalthread.h" 21 #include "webrtc/base/signalthread.h"
23 #include "webrtc/base/stringencode.h" 22 #include "webrtc/base/stringencode.h"
24 23
25 namespace { 24 namespace {
26 25
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 } 213 }
215 if (!relay_ssltcp_port.empty()) { 214 if (!relay_ssltcp_port.empty()) {
216 rtc::SocketAddress address(relay_ip, atoi(relay_ssltcp_port.c_str())); 215 rtc::SocketAddress address(relay_ip, atoi(relay_ssltcp_port.c_str()));
217 relay_config.ports.push_back(ProtocolAddress(address, PROTO_SSLTCP)); 216 relay_config.ports.push_back(ProtocolAddress(address, PROTO_SSLTCP));
218 } 217 }
219 config->AddRelay(relay_config); 218 config->AddRelay(relay_config);
220 ConfigReady(config); 219 ConfigReady(config);
221 } 220 }
222 221
223 } // namespace cricket 222 } // namespace cricket
OLDNEW
« no previous file with comments | « webrtc/p2p/base/transportdescription.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698