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

Unified Diff: content/renderer/media/media_stream_dependency_factory.cc

Issue 22640017: Passing NULL PeerConnectionIdentityService to Libjingle when Chrome is using openssl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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 | « no previous file | content/renderer/media/peer_connection_identity_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/media_stream_dependency_factory.cc
diff --git a/content/renderer/media/media_stream_dependency_factory.cc b/content/renderer/media/media_stream_dependency_factory.cc
index 7f5e64aa187ffe65a2b1995e102f5a64b5809aef..28e0ce85f62d14a012505002c19c8aaec1c39ae6 100644
--- a/content/renderer/media/media_stream_dependency_factory.cc
+++ b/content/renderer/media/media_stream_dependency_factory.cc
@@ -551,8 +551,8 @@ MediaStreamDependencyFactory::CreatePeerConnection(
web_frame);
PeerConnectionIdentityService* identity_service =
- new PeerConnectionIdentityService(GURL(web_frame->document().url().spec())
- .GetOrigin());
+ PeerConnectionIdentityService::Create(
juberti2 2013/08/09 20:23:39 Suggest adding a comment to indicate that a NULL r
+ GURL(web_frame->document().url().spec()).GetOrigin());
return pc_factory_->CreatePeerConnection(ice_servers,
constraints,
« no previous file with comments | « no previous file | content/renderer/media/peer_connection_identity_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698