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

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

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
Index: content/renderer/media/peer_connection_identity_service.h
diff --git a/content/renderer/media/peer_connection_identity_service.h b/content/renderer/media/peer_connection_identity_service.h
index fa0b16a096c7209492e7ab126238bea4760c5891..b68cafa135d6d8e015c7f03f90da39cea5e40c74 100644
--- a/content/renderer/media/peer_connection_identity_service.h
+++ b/content/renderer/media/peer_connection_identity_service.h
@@ -19,7 +19,7 @@ namespace content {
class PeerConnectionIdentityService
: public webrtc::DTLSIdentityServiceInterface {
public:
- static PeerConnectionIdentityService* Create(const GURL& origin);
+ explicit PeerConnectionIdentityService(const GURL& origin);
virtual ~PeerConnectionIdentityService();
@@ -30,8 +30,6 @@ class PeerConnectionIdentityService
webrtc::DTLSIdentityRequestObserver* observer) OVERRIDE;
private:
- explicit PeerConnectionIdentityService(const GURL& origin);
-
void OnIdentityReady(const std::string& certificate,
const std::string& private_key);
void OnRequestFailed(int error);

Powered by Google App Engine
This is Rietveld 408576698