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

Unified Diff: third_party/WebKit/Source/web/tests/ActiveConnectionThrottlingTest.cpp

Issue 2846843002: [blink] Unique pointers in Platform.h (Closed)
Patch Set: fix content_shell compilation 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/web/tests/ActiveConnectionThrottlingTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/ActiveConnectionThrottlingTest.cpp b/third_party/WebKit/Source/web/tests/ActiveConnectionThrottlingTest.cpp
index 4f92a0847c919c5ab96b5ad4a192576f5ff3d8e1..84954d2fc8820d26b97eabd0b77f45e47de2df10 100644
--- a/third_party/WebKit/Source/web/tests/ActiveConnectionThrottlingTest.cpp
+++ b/third_party/WebKit/Source/web/tests/ActiveConnectionThrottlingTest.cpp
@@ -97,9 +97,10 @@ class MockWebRTCPeerConnectionHandler : public WebRTCPeerConnectionHandler {
class TestingPlatformSupportWithWebRTC : public TestingPlatformSupport {
public:
- blink::WebRTCPeerConnectionHandler* CreateRTCPeerConnectionHandler(
+ std::unique_ptr<blink::WebRTCPeerConnectionHandler>
+ CreateRTCPeerConnectionHandler(
blink::WebRTCPeerConnectionHandlerClient*) override {
- return new MockWebRTCPeerConnectionHandler();
+ return base::MakeUnique<MockWebRTCPeerConnectionHandler>();
haraken 2017/04/27 11:45:59 WTF::MakeUnique ?
altimin 2017/04/27 11:57:07 Done.
}
};

Powered by Google App Engine
This is Rietveld 408576698