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

Side by Side Diff: webrtc/pc/channel.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/bundlefilter_unittest.cc ('k') | webrtc/pc/channel.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 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_PC_CHANNEL_H_ 11 #ifndef WEBRTC_PC_CHANNEL_H_
12 #define WEBRTC_PC_CHANNEL_H_ 12 #define WEBRTC_PC_CHANNEL_H_
13 13
14 #include <map> 14 #include <map>
15 #include <memory> 15 #include <memory>
16 #include <set> 16 #include <set>
17 #include <string> 17 #include <string>
18 #include <utility> 18 #include <utility>
19 #include <vector> 19 #include <vector>
20 20
21 #include "webrtc/api/call/audio_sink.h" 21 #include "webrtc/api/call/audio_sink.h"
22 #include "webrtc/api/rtpreceiverinterface.h" 22 #include "webrtc/api/rtpreceiverinterface.h"
23 #include "webrtc/base/asyncinvoker.h"
24 #include "webrtc/base/asyncudpsocket.h"
25 #include "webrtc/base/criticalsection.h"
26 #include "webrtc/base/network.h"
27 #include "webrtc/base/sigslot.h"
28 #include "webrtc/base/window.h"
29 #include "webrtc/media/base/mediachannel.h" 23 #include "webrtc/media/base/mediachannel.h"
30 #include "webrtc/media/base/mediaengine.h" 24 #include "webrtc/media/base/mediaengine.h"
31 #include "webrtc/media/base/streamparams.h" 25 #include "webrtc/media/base/streamparams.h"
32 #include "webrtc/media/base/videosinkinterface.h" 26 #include "webrtc/media/base/videosinkinterface.h"
33 #include "webrtc/media/base/videosourceinterface.h" 27 #include "webrtc/media/base/videosourceinterface.h"
34 #include "webrtc/p2p/base/dtlstransportinternal.h" 28 #include "webrtc/p2p/base/dtlstransportinternal.h"
35 #include "webrtc/p2p/base/packettransportinternal.h" 29 #include "webrtc/p2p/base/packettransportinternal.h"
36 #include "webrtc/p2p/base/transportcontroller.h" 30 #include "webrtc/p2p/base/transportcontroller.h"
37 #include "webrtc/p2p/client/socketmonitor.h" 31 #include "webrtc/p2p/client/socketmonitor.h"
38 #include "webrtc/pc/audiomonitor.h" 32 #include "webrtc/pc/audiomonitor.h"
39 #include "webrtc/pc/mediamonitor.h" 33 #include "webrtc/pc/mediamonitor.h"
40 #include "webrtc/pc/mediasession.h" 34 #include "webrtc/pc/mediasession.h"
41 #include "webrtc/pc/rtcpmuxfilter.h" 35 #include "webrtc/pc/rtcpmuxfilter.h"
42 #include "webrtc/pc/rtptransport.h" 36 #include "webrtc/pc/rtptransport.h"
43 #include "webrtc/pc/srtpfilter.h" 37 #include "webrtc/pc/srtpfilter.h"
38 #include "webrtc/rtc_base/asyncinvoker.h"
39 #include "webrtc/rtc_base/asyncudpsocket.h"
40 #include "webrtc/rtc_base/criticalsection.h"
41 #include "webrtc/rtc_base/network.h"
42 #include "webrtc/rtc_base/sigslot.h"
43 #include "webrtc/rtc_base/window.h"
44 44
45 namespace webrtc { 45 namespace webrtc {
46 class AudioSinkInterface; 46 class AudioSinkInterface;
47 } // namespace webrtc 47 } // namespace webrtc
48 48
49 namespace cricket { 49 namespace cricket {
50 50
51 struct CryptoParams; 51 struct CryptoParams;
52 class MediaContentDescription; 52 class MediaContentDescription;
53 53
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 // SetSendParameters. 728 // SetSendParameters.
729 DataSendParameters last_send_params_; 729 DataSendParameters last_send_params_;
730 // Last DataRecvParameters sent down to the media_channel() via 730 // Last DataRecvParameters sent down to the media_channel() via
731 // SetRecvParameters. 731 // SetRecvParameters.
732 DataRecvParameters last_recv_params_; 732 DataRecvParameters last_recv_params_;
733 }; 733 };
734 734
735 } // namespace cricket 735 } // namespace cricket
736 736
737 #endif // WEBRTC_PC_CHANNEL_H_ 737 #endif // WEBRTC_PC_CHANNEL_H_
OLDNEW
« no previous file with comments | « webrtc/pc/bundlefilter_unittest.cc ('k') | webrtc/pc/channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698