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

Side by Side Diff: webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h

Issue 2969653002: Update includes for webrtc/{base => rtc_base} rename (1/3) (Closed)
Patch Set: Rebased onto 89c4a7e57d524b13fbe0c823a83a4c10c2e63bd0 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ 11 #ifndef WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_
12 #define WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ 12 #define WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_
13 13
14 #include <stddef.h> 14 #include <stddef.h>
15 #include <list> 15 #include <list>
16 #include <vector> 16 #include <vector>
17 17
18 #include "webrtc/base/deprecation.h"
19 #include "webrtc/common_types.h" 18 #include "webrtc/common_types.h"
20 #include "webrtc/modules/include/module_common_types.h" 19 #include "webrtc/modules/include/module_common_types.h"
20 #include "webrtc/rtc_base/deprecation.h"
21 #include "webrtc/system_wrappers/include/clock.h" 21 #include "webrtc/system_wrappers/include/clock.h"
22 #include "webrtc/typedefs.h" 22 #include "webrtc/typedefs.h"
23 23
24 #define RTCP_CNAME_SIZE 256 // RFC 3550 page 44, including null termination 24 #define RTCP_CNAME_SIZE 256 // RFC 3550 page 44, including null termination
25 #define IP_PACKET_SIZE 1500 // we assume ethernet 25 #define IP_PACKET_SIZE 1500 // we assume ethernet
26 #define MAX_NUMBER_OF_PARALLEL_TELEPHONE_EVENTS 10 26 #define MAX_NUMBER_OF_PARALLEL_TELEPHONE_EVENTS 10
27 27
28 namespace webrtc { 28 namespace webrtc {
29 namespace rtcp { 29 namespace rtcp {
30 class TransportFeedback; 30 class TransportFeedback;
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 class TransportSequenceNumberAllocator { 456 class TransportSequenceNumberAllocator {
457 public: 457 public:
458 TransportSequenceNumberAllocator() {} 458 TransportSequenceNumberAllocator() {}
459 virtual ~TransportSequenceNumberAllocator() {} 459 virtual ~TransportSequenceNumberAllocator() {}
460 460
461 virtual uint16_t AllocateSequenceNumber() = 0; 461 virtual uint16_t AllocateSequenceNumber() = 0;
462 }; 462 };
463 463
464 } // namespace webrtc 464 } // namespace webrtc
465 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ 465 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/include/rtp_rtcp.h ('k') | webrtc/modules/rtp_rtcp/mocks/mock_recovered_packet_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698