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

Side by Side Diff: webrtc/p2p/base/candidate.h

Issue 2969623003: Update includes for webrtc/{base => rtc_base} rename (2/3) (Closed)
Patch Set: Rebased onto 224e65939af87443addfc5bb500fbf434728bd1c and restored sorting in clock.cc Created 3 years, 5 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 | « webrtc/p2p/base/basicpacketsocketfactory.cc ('k') | webrtc/p2p/base/common.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 /* 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 #ifndef WEBRTC_P2P_BASE_CANDIDATE_H_ 11 #ifndef WEBRTC_P2P_BASE_CANDIDATE_H_
12 #define WEBRTC_P2P_BASE_CANDIDATE_H_ 12 #define WEBRTC_P2P_BASE_CANDIDATE_H_
13 13
14 #include <limits.h> 14 #include <limits.h>
15 #include <math.h> 15 #include <math.h>
16 #include <stdint.h> 16 #include <stdint.h>
17 17
18 #include <algorithm> 18 #include <algorithm>
19 #include <iomanip> 19 #include <iomanip>
20 #include <sstream> 20 #include <sstream>
21 #include <string> 21 #include <string>
22 22
23 #include "webrtc/p2p/base/p2pconstants.h" 23 #include "webrtc/p2p/base/p2pconstants.h"
24 #include "webrtc/base/checks.h" 24 #include "webrtc/rtc_base/checks.h"
25 #include "webrtc/base/helpers.h" 25 #include "webrtc/rtc_base/helpers.h"
26 #include "webrtc/base/network.h" 26 #include "webrtc/rtc_base/network.h"
27 #include "webrtc/base/socketaddress.h" 27 #include "webrtc/rtc_base/socketaddress.h"
28 28
29 namespace cricket { 29 namespace cricket {
30 30
31 // Candidate for ICE based connection discovery. 31 // Candidate for ICE based connection discovery.
32 32
33 class Candidate { 33 class Candidate {
34 public: 34 public:
35 // TODO: Match the ordering and param list as per RFC 5245 35 // TODO: Match the ordering and param list as per RFC 5245
36 // candidate-attribute syntax. http://tools.ietf.org/html/rfc5245#section-15.1 36 // candidate-attribute syntax. http://tools.ietf.org/html/rfc5245#section-15.1
37 Candidate() 37 Candidate()
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 virtual ~CandidateTranslator() {} 298 virtual ~CandidateTranslator() {}
299 virtual bool GetChannelNameFromComponent( 299 virtual bool GetChannelNameFromComponent(
300 int component, std::string* channel_name) const = 0; 300 int component, std::string* channel_name) const = 0;
301 virtual bool GetComponentFromChannelName( 301 virtual bool GetComponentFromChannelName(
302 const std::string& channel_name, int* component) const = 0; 302 const std::string& channel_name, int* component) const = 0;
303 }; 303 };
304 304
305 } // namespace cricket 305 } // namespace cricket
306 306
307 #endif // WEBRTC_P2P_BASE_CANDIDATE_H_ 307 #endif // WEBRTC_P2P_BASE_CANDIDATE_H_
OLDNEW
« no previous file with comments | « webrtc/p2p/base/basicpacketsocketfactory.cc ('k') | webrtc/p2p/base/common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698