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

Unified Diff: webrtc/pc/proxy_unittest.cc

Issue 2675173003: Adding "adapter" ORTC objects on top of ChannelManager/BaseChannel/etc. (Closed)
Patch Set: Add memcheck suppression for end-to-end tests. Created 3 years, 10 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 | « webrtc/pc/peerconnection.cc ('k') | webrtc/pc/rtpreceiver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/proxy_unittest.cc
diff --git a/webrtc/pc/proxy_unittest.cc b/webrtc/pc/proxy_unittest.cc
index 148b74210e34e60b75b069ae670d65e0e62fde82..d7acdc193d3232bc61edc9514f1b32110f813965 100644
--- a/webrtc/pc/proxy_unittest.cc
+++ b/webrtc/pc/proxy_unittest.cc
@@ -284,8 +284,9 @@ class OwnedProxyTest : public testing::Test {
public:
OwnedProxyTest()
: foo_(new Foo()),
- foo_proxy_(
- FooProxy::Create(&signaling_thread_, &worker_thread_, foo_)) {
+ foo_proxy_(FooProxy::Create(&signaling_thread_,
+ &worker_thread_,
+ std::unique_ptr<FooInterface>(foo_))) {
signaling_thread_.Start();
worker_thread_.Start();
}
« no previous file with comments | « webrtc/pc/peerconnection.cc ('k') | webrtc/pc/rtpreceiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698