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

Unified Diff: webrtc/api/peerconnectionfactory.cc

Issue 2021663002: Remove PeerConnectionFactory's certificate generator and ref counted wrapper. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/api/peerconnectionfactory.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/peerconnectionfactory.cc
diff --git a/webrtc/api/peerconnectionfactory.cc b/webrtc/api/peerconnectionfactory.cc
index 9a58452d2d9cccfec1bf6f888f0d0899a574e0be..178c59bb1217d22ac43d3d27d388f6da3ea9fcb6 100644
--- a/webrtc/api/peerconnectionfactory.cc
+++ b/webrtc/api/peerconnectionfactory.cc
@@ -34,33 +34,6 @@
namespace webrtc {
-namespace {
-
-// Passes down the calls to |cert_generator_|. See usage in
-// |CreatePeerConnection|.
-class RTCCertificateGeneratorWrapper
- : public rtc::RTCCertificateGeneratorInterface {
- public:
- RTCCertificateGeneratorWrapper(
- const rtc::scoped_refptr<RefCountedRTCCertificateGenerator>& cert_gen)
- : cert_generator_(cert_gen) {
- RTC_DCHECK(cert_generator_);
- }
-
- void GenerateCertificateAsync(
- const rtc::KeyParams& key_params,
- const rtc::Optional<uint64_t>& expires_ms,
- const rtc::scoped_refptr<rtc::RTCCertificateGeneratorCallback>& callback)
- override {
- cert_generator_->GenerateCertificateAsync(key_params, expires_ms, callback);
- }
-
- private:
- rtc::scoped_refptr<RefCountedRTCCertificateGenerator> cert_generator_;
-};
-
-} // anonymous namespace
-
rtc::scoped_refptr<PeerConnectionFactoryInterface>
CreatePeerConnectionFactory() {
rtc::scoped_refptr<PeerConnectionFactory> pc_factory(
@@ -143,9 +116,7 @@ PeerConnectionFactory::~PeerConnectionFactory() {
channel_manager_.reset(nullptr);
// Make sure |worker_thread_| and |signaling_thread_| outlive
- // |cert_generator_|, |default_socket_factory_| and
- // |default_network_manager_|.
- cert_generator_ = nullptr;
+ // |default_socket_factory_| and |default_network_manager_|.
default_socket_factory_ = nullptr;
default_network_manager_ = nullptr;
@@ -186,9 +157,6 @@ bool PeerConnectionFactory::Initialize() {
return false;
}
- cert_generator_ =
- new RefCountedRTCCertificateGenerator(signaling_thread_, network_thread_);
-
return true;
}
@@ -278,11 +246,9 @@ PeerConnectionFactory::CreatePeerConnection(
RTC_DCHECK(signaling_thread_->IsCurrent());
if (!cert_generator.get()) {
- // Because |pc|->Initialize takes ownership of the generator we need a new
- // wrapper object that can be deleted without deleting the underlying
- // |cert_generator_|, protecting it from being deleted multiple times.
+ // No certificate generator specified, use the default one.
cert_generator.reset(
- new RTCCertificateGeneratorWrapper(cert_generator_));
+ new rtc::RTCCertificateGenerator(signaling_thread_, network_thread_));
hbos 2016/06/01 10:08:56 Using network_thread_ instead of worker_thread_ he
tommi 2016/06/01 12:44:59 Keeping the existing behaviour makes sense. You c
}
if (!allocator) {
« no previous file with comments | « webrtc/api/peerconnectionfactory.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698