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

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

Issue 29253003: Enable DTLS caching for Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/peer_connection_identity_service.cc
diff --git a/content/renderer/media/peer_connection_identity_service.cc b/content/renderer/media/peer_connection_identity_service.cc
index 904eb4128c318d6d60f53e72a05b382c9d420b0d..fecb9d2ab3943d199fffdd735c890a1fe7492572 100644
--- a/content/renderer/media/peer_connection_identity_service.cc
+++ b/content/renderer/media/peer_connection_identity_service.cc
@@ -11,14 +11,7 @@ namespace content {
PeerConnectionIdentityService* PeerConnectionIdentityService::Create(
Ami GONE FROM CHROMIUM 2013/10/18 18:33:14 This factory method is no longer necessary, so you
jiayl 2013/10/18 22:13:42 Done.
const GURL& origin) {
-// The crypto APIs needed for generating identities are not implenented for
-// OPENSSL yet (crbug/91512). So returning NULL in that case.
-// TODO(jiayl): remove the #if once the crypto APIs are implemented for OPENSSL.
-#if defined(USE_OPENSSL)
- return NULL;
-#else
return new PeerConnectionIdentityService(origin);
-#endif // defined(USE_OPENSSL)
}
PeerConnectionIdentityService::~PeerConnectionIdentityService() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698