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

Unified Diff: remoting/host/ipc_mouse_cursor_monitor.cc

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/host/ipc_mouse_cursor_monitor.h ('k') | remoting/host/ipc_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/ipc_mouse_cursor_monitor.cc
diff --git a/remoting/host/ipc_mouse_cursor_monitor.cc b/remoting/host/ipc_mouse_cursor_monitor.cc
index 7df56db7a72b28047712cc7d4a5f3b2368080ff6..d9f2fc62d3f16d7b363aabe18051b87e091d524a 100644
--- a/remoting/host/ipc_mouse_cursor_monitor.cc
+++ b/remoting/host/ipc_mouse_cursor_monitor.cc
@@ -33,7 +33,7 @@ void IpcMouseCursorMonitor::Capture() {
}
void IpcMouseCursorMonitor::OnMouseCursor(
- scoped_ptr<webrtc::MouseCursor> cursor) {
+ std::unique_ptr<webrtc::MouseCursor> cursor) {
DCHECK(callback_);
callback_->OnMouseCursor(cursor.release());
}
« no previous file with comments | « remoting/host/ipc_mouse_cursor_monitor.h ('k') | remoting/host/ipc_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698