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

Unified Diff: remoting/protocol/connection_to_client.h

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU 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 | « remoting/protocol/connection_tester.cc ('k') | remoting/protocol/connection_to_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/connection_to_client.h
diff --git a/remoting/protocol/connection_to_client.h b/remoting/protocol/connection_to_client.h
index 09ac21b4d1ded7f0c2accb13c10c8f6733cf3b81..acb48b5b91ac5ebad6dc1394eeffd7d8af4ccb63 100644
--- a/remoting/protocol/connection_to_client.h
+++ b/remoting/protocol/connection_to_client.h
@@ -84,8 +84,8 @@ class ConnectionToClient {
// Start video stream that sends screen content from |desktop_capturer| to the
// client.
- virtual scoped_ptr<VideoStream> StartVideoStream(
- scoped_ptr<webrtc::DesktopCapturer> desktop_capturer) = 0;
+ virtual std::unique_ptr<VideoStream> StartVideoStream(
+ std::unique_ptr<webrtc::DesktopCapturer> desktop_capturer) = 0;
// Get the stubs used by the host to transmit messages to the client.
// The stubs must not be accessed before OnConnectionAuthenticated(), or
« no previous file with comments | « remoting/protocol/connection_tester.cc ('k') | remoting/protocol/connection_to_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698