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

Unified Diff: remoting/host/desktop_capturer_proxy.cc

Issue 1921553002: Stop using rtc_make_scoped_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | remoting/host/desktop_session_agent.cc » ('j') | remoting/host/desktop_session_agent.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/desktop_capturer_proxy.cc
diff --git a/remoting/host/desktop_capturer_proxy.cc b/remoting/host/desktop_capturer_proxy.cc
index 3faeb6a02578c30ee01c52bd6cf792d1b23701e8..a9ffa9b651085f5d87a4df64e9b055fb70290a05 100644
--- a/remoting/host/desktop_capturer_proxy.cc
+++ b/remoting/host/desktop_capturer_proxy.cc
@@ -85,7 +85,8 @@ void DesktopCapturerProxy::Core::SetSharedMemoryFactory(
DCHECK(thread_checker_.CalledOnValidThread());
if (capturer_) {
capturer_->SetSharedMemoryFactory(
- rtc_make_scoped_ptr(shared_memory_factory.release()));
+ rtc::scoped_ptr<webrtc::SharedMemoryFactory>(
+ shared_memory_factory.release()));
}
}
« no previous file with comments | « no previous file | remoting/host/desktop_session_agent.cc » ('j') | remoting/host/desktop_session_agent.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698