OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 #include <string> | 31 #include <string> |
32 #include <vector> | 32 #include <vector> |
33 | 33 |
34 #include "talk/app/webrtc/datachannel.h" | 34 #include "talk/app/webrtc/datachannel.h" |
35 #include "talk/app/webrtc/dtmfsender.h" | 35 #include "talk/app/webrtc/dtmfsender.h" |
36 #include "talk/app/webrtc/mediacontroller.h" | 36 #include "talk/app/webrtc/mediacontroller.h" |
37 #include "talk/app/webrtc/mediastreamprovider.h" | 37 #include "talk/app/webrtc/mediastreamprovider.h" |
38 #include "talk/app/webrtc/peerconnectioninterface.h" | 38 #include "talk/app/webrtc/peerconnectioninterface.h" |
39 #include "talk/app/webrtc/statstypes.h" | 39 #include "talk/app/webrtc/statstypes.h" |
40 #include "talk/media/base/mediachannel.h" | |
41 #include "talk/session/media/mediasession.h" | 40 #include "talk/session/media/mediasession.h" |
42 #include "webrtc/base/sigslot.h" | 41 #include "webrtc/base/sigslot.h" |
43 #include "webrtc/base/sslidentity.h" | 42 #include "webrtc/base/sslidentity.h" |
44 #include "webrtc/base/thread.h" | 43 #include "webrtc/base/thread.h" |
| 44 #include "webrtc/media/base/mediachannel.h" |
45 #include "webrtc/p2p/base/transportcontroller.h" | 45 #include "webrtc/p2p/base/transportcontroller.h" |
46 | 46 |
47 namespace cricket { | 47 namespace cricket { |
48 | 48 |
49 class ChannelManager; | 49 class ChannelManager; |
50 class DataChannel; | 50 class DataChannel; |
51 class StatsReport; | 51 class StatsReport; |
52 class VideoCapturer; | 52 class VideoCapturer; |
53 class VideoChannel; | 53 class VideoChannel; |
54 class VoiceChannel; | 54 class VoiceChannel; |
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 PeerConnectionInterface::BundlePolicy bundle_policy_; | 517 PeerConnectionInterface::BundlePolicy bundle_policy_; |
518 | 518 |
519 // Declares the RTCP mux policy for the WebRTCSession. | 519 // Declares the RTCP mux policy for the WebRTCSession. |
520 PeerConnectionInterface::RtcpMuxPolicy rtcp_mux_policy_; | 520 PeerConnectionInterface::RtcpMuxPolicy rtcp_mux_policy_; |
521 | 521 |
522 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession); | 522 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession); |
523 }; | 523 }; |
524 } // namespace webrtc | 524 } // namespace webrtc |
525 | 525 |
526 #endif // TALK_APP_WEBRTC_WEBRTCSESSION_H_ | 526 #endif // TALK_APP_WEBRTC_WEBRTCSESSION_H_ |
OLD | NEW |