| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   54 #include <memory> |   54 #include <memory> | 
|   55 #include <ostream> |   55 #include <ostream> | 
|   56 #include <string> |   56 #include <string> | 
|   57 #include <utility> |   57 #include <utility> | 
|   58 #include <vector> |   58 #include <vector> | 
|   59  |   59  | 
|   60 #include "webrtc/api/datachannelinterface.h" |   60 #include "webrtc/api/datachannelinterface.h" | 
|   61 #include "webrtc/api/dtmfsenderinterface.h" |   61 #include "webrtc/api/dtmfsenderinterface.h" | 
|   62 #include "webrtc/api/jsep.h" |   62 #include "webrtc/api/jsep.h" | 
|   63 #include "webrtc/api/mediastreaminterface.h" |   63 #include "webrtc/api/mediastreaminterface.h" | 
|   64 #include "webrtc/api/rtcstatscollector.h" |   64 #include "webrtc/api/stats/rtcstatscollectorcallback.h" | 
|   65 #include "webrtc/api/rtpreceiverinterface.h" |   65 #include "webrtc/api/rtpreceiverinterface.h" | 
|   66 #include "webrtc/api/rtpsenderinterface.h" |   66 #include "webrtc/api/rtpsenderinterface.h" | 
|   67 #include "webrtc/api/statstypes.h" |   67 #include "webrtc/api/statstypes.h" | 
|   68 #include "webrtc/api/umametrics.h" |   68 #include "webrtc/api/umametrics.h" | 
|   69 #include "webrtc/base/fileutils.h" |   69 #include "webrtc/base/fileutils.h" | 
|   70 #include "webrtc/base/network.h" |   70 #include "webrtc/base/network.h" | 
|   71 #include "webrtc/base/rtccertificate.h" |   71 #include "webrtc/base/rtccertificate.h" | 
|   72 #include "webrtc/base/rtccertificategenerator.h" |   72 #include "webrtc/base/rtccertificategenerator.h" | 
|   73 #include "webrtc/base/socketaddress.h" |   73 #include "webrtc/base/socketaddress.h" | 
|   74 #include "webrtc/base/sslstreamadapter.h" |   74 #include "webrtc/base/sslstreamadapter.h" | 
| (...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  882     cricket::WebRtcVideoEncoderFactory* encoder_factory, |  882     cricket::WebRtcVideoEncoderFactory* encoder_factory, | 
|  883     cricket::WebRtcVideoDecoderFactory* decoder_factory) { |  883     cricket::WebRtcVideoDecoderFactory* decoder_factory) { | 
|  884   return CreatePeerConnectionFactory( |  884   return CreatePeerConnectionFactory( | 
|  885       worker_and_network_thread, worker_and_network_thread, signaling_thread, |  885       worker_and_network_thread, worker_and_network_thread, signaling_thread, | 
|  886       default_adm, encoder_factory, decoder_factory); |  886       default_adm, encoder_factory, decoder_factory); | 
|  887 } |  887 } | 
|  888  |  888  | 
|  889 }  // namespace webrtc |  889 }  // namespace webrtc | 
|  890  |  890  | 
|  891 #endif  // WEBRTC_API_PEERCONNECTIONINTERFACE_H_ |  891 #endif  // WEBRTC_API_PEERCONNECTIONINTERFACE_H_ | 
| OLD | NEW |