| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 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 |
| (...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 // |worker_thread| and |signaling_thread| are the only mandatory | 689 // |worker_thread| and |signaling_thread| are the only mandatory |
| 690 // parameters. | 690 // parameters. |
| 691 // | 691 // |
| 692 // If non-null, ownership of |default_adm|, |encoder_factory| and | 692 // If non-null, ownership of |default_adm|, |encoder_factory| and |
| 693 // |decoder_factory| are transferred to the returned factory. | 693 // |decoder_factory| are transferred to the returned factory. |
| 694 rtc::scoped_refptr<PeerConnectionFactoryInterface> | 694 rtc::scoped_refptr<PeerConnectionFactoryInterface> |
| 695 CreatePeerConnectionFactory( | 695 CreatePeerConnectionFactory( |
| 696 rtc::Thread* worker_thread, | 696 rtc::Thread* worker_thread, |
| 697 rtc::Thread* signaling_thread, | 697 rtc::Thread* signaling_thread, |
| 698 AudioDeviceModule* default_adm, | 698 AudioDeviceModule* default_adm, |
| 699 cricket::WebRtcVideoEncoderFactory* encoder_factory, | 699 cricket::WebRtcVideoEncoderFactory* video_encoder_factory, |
| 700 cricket::WebRtcVideoDecoderFactory* decoder_factory); | 700 cricket::WebRtcVideoDecoderFactory* video_decoder_factory); |
| 701 | 701 |
| 702 } // namespace webrtc | 702 } // namespace webrtc |
| 703 | 703 |
| 704 #endif // WEBRTC_API_PEERCONNECTIONINTERFACE_H_ | 704 #endif // WEBRTC_API_PEERCONNECTIONINTERFACE_H_ |
| OLD | NEW |