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

Side by Side Diff: webrtc/pc/rtpsender.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/pc/rtpreceiver.cc ('k') | webrtc/pc/rtpsender.cc » ('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 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2015 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 // This file contains classes that implement RtpSenderInterface. 11 // This file contains classes that implement RtpSenderInterface.
12 // An RtpSender associates a MediaStreamTrackInterface with an underlying 12 // An RtpSender associates a MediaStreamTrackInterface with an underlying
13 // transport (provided by AudioProviderInterface/VideoProviderInterface) 13 // transport (provided by AudioProviderInterface/VideoProviderInterface)
14 14
15 #ifndef WEBRTC_PC_RTPSENDER_H_ 15 #ifndef WEBRTC_PC_RTPSENDER_H_
16 #define WEBRTC_PC_RTPSENDER_H_ 16 #define WEBRTC_PC_RTPSENDER_H_
17 17
18 #include <memory> 18 #include <memory>
19 #include <string> 19 #include <string>
20 20
21 #include "webrtc/api/mediastreaminterface.h" 21 #include "webrtc/api/mediastreaminterface.h"
22 #include "webrtc/api/rtpsenderinterface.h" 22 #include "webrtc/api/rtpsenderinterface.h"
23 #include "webrtc/base/basictypes.h" 23 #include "webrtc/rtc_base/basictypes.h"
24 #include "webrtc/base/criticalsection.h" 24 #include "webrtc/rtc_base/criticalsection.h"
25 // Adding 'nogncheck' to disable the gn include headers check to support modular 25 // Adding 'nogncheck' to disable the gn include headers check to support modular
26 // WebRTC build targets. 26 // WebRTC build targets.
27 #include "webrtc/media/base/audiosource.h" // nogncheck 27 #include "webrtc/media/base/audiosource.h" // nogncheck
28 #include "webrtc/pc/channel.h" 28 #include "webrtc/pc/channel.h"
29 #include "webrtc/pc/dtmfsender.h" 29 #include "webrtc/pc/dtmfsender.h"
30 #include "webrtc/pc/statscollector.h" 30 #include "webrtc/pc/statscollector.h"
31 31
32 namespace webrtc { 32 namespace webrtc {
33 33
34 // Internal interface used by PeerConnection. 34 // Internal interface used by PeerConnection.
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 uint32_t ssrc_ = 0; 244 uint32_t ssrc_ = 0;
245 bool cached_track_enabled_ = false; 245 bool cached_track_enabled_ = false;
246 VideoTrackInterface::ContentHint cached_track_content_hint_ = 246 VideoTrackInterface::ContentHint cached_track_content_hint_ =
247 VideoTrackInterface::ContentHint::kNone; 247 VideoTrackInterface::ContentHint::kNone;
248 bool stopped_ = false; 248 bool stopped_ = false;
249 }; 249 };
250 250
251 } // namespace webrtc 251 } // namespace webrtc
252 252
253 #endif // WEBRTC_PC_RTPSENDER_H_ 253 #endif // WEBRTC_PC_RTPSENDER_H_
OLDNEW
« no previous file with comments | « webrtc/pc/rtpreceiver.cc ('k') | webrtc/pc/rtpsender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698