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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE). | 503 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE). |
504 cricket::DataChannelType data_channel_type_; | 504 cricket::DataChannelType data_channel_type_; |
505 rtc::scoped_ptr<IceRestartAnswerLatch> ice_restart_latch_; | 505 rtc::scoped_ptr<IceRestartAnswerLatch> ice_restart_latch_; |
506 | 506 |
507 rtc::scoped_ptr<WebRtcSessionDescriptionFactory> | 507 rtc::scoped_ptr<WebRtcSessionDescriptionFactory> |
508 webrtc_session_desc_factory_; | 508 webrtc_session_desc_factory_; |
509 | 509 |
510 // Member variables for caching global options. | 510 // Member variables for caching global options. |
511 cricket::AudioOptions audio_options_; | 511 cricket::AudioOptions audio_options_; |
512 cricket::VideoOptions video_options_; | 512 cricket::VideoOptions video_options_; |
| 513 cricket::MediaChannelOptions channel_options_; |
513 MetricsObserverInterface* metrics_observer_; | 514 MetricsObserverInterface* metrics_observer_; |
514 | 515 |
515 // Declares the bundle policy for the WebRTCSession. | 516 // Declares the bundle policy for the WebRTCSession. |
516 PeerConnectionInterface::BundlePolicy bundle_policy_; | 517 PeerConnectionInterface::BundlePolicy bundle_policy_; |
517 | 518 |
518 // Declares the RTCP mux policy for the WebRTCSession. | 519 // Declares the RTCP mux policy for the WebRTCSession. |
519 PeerConnectionInterface::RtcpMuxPolicy rtcp_mux_policy_; | 520 PeerConnectionInterface::RtcpMuxPolicy rtcp_mux_policy_; |
520 | 521 |
521 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession); | 522 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession); |
522 }; | 523 }; |
523 } // namespace webrtc | 524 } // namespace webrtc |
524 | 525 |
525 #endif // TALK_APP_WEBRTC_WEBRTCSESSION_H_ | 526 #endif // TALK_APP_WEBRTC_WEBRTCSESSION_H_ |
OLD | NEW |