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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp

Issue 2850593002: Revert of [blink] Unique pointers in Platform.h (Closed)
Patch Set: Created 3 years, 8 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: third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp b/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp
index d4aec0a78638e1e189a9feed3773b9846f96de66..e97e12ef7f150f7430f40e96c3831316ac1be28f 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp
@@ -503,7 +503,8 @@
return;
}
- peer_handler_ = Platform::Current()->CreateRTCPeerConnectionHandler(this);
+ peer_handler_ = WTF::WrapUnique(
+ Platform::Current()->CreateRTCPeerConnectionHandler(this));
if (!peer_handler_) {
closed_ = true;
stopped_ = true;
@@ -924,7 +925,7 @@
DCHECK(!key_params.IsNull());
std::unique_ptr<WebRTCCertificateGenerator> certificate_generator =
- Platform::Current()->CreateRTCCertificateGenerator();
+ WTF::WrapUnique(Platform::Current()->CreateRTCCertificateGenerator());
// |keyParams| was successfully constructed, but does the certificate
// generator support these parameters?

Powered by Google App Engine
This is Rietveld 408576698