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

Unified Diff: remoting/test/fake_port_allocator.cc

Issue 502123003: Remove implicit conversions from scoped_refptr to T* in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 | « remoting/host/video_frame_recorder.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/test/fake_port_allocator.cc
diff --git a/remoting/test/fake_port_allocator.cc b/remoting/test/fake_port_allocator.cc
index 18358233749e1d5e4ce5f61cd4a424042719d0ec..64eb08f9c45366c16a6d417e2cb27f9650b068ac 100644
--- a/remoting/test/fake_port_allocator.cc
+++ b/remoting/test/fake_port_allocator.cc
@@ -91,7 +91,7 @@ void FakePortAllocatorSession::SendSessionRequest(
scoped_ptr<FakePortAllocator> FakePortAllocator::Create(
scoped_refptr<FakeNetworkDispatcher> fake_network_dispatcher) {
scoped_ptr<FakePacketSocketFactory> socket_factory(
- new FakePacketSocketFactory(fake_network_dispatcher));
+ new FakePacketSocketFactory(fake_network_dispatcher.get()));
scoped_ptr<rtc::NetworkManager> network_manager(
new FakeNetworkManager(socket_factory->GetAddress()));
« no previous file with comments | « remoting/host/video_frame_recorder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698