| Index: remoting/host/ipc_video_frame_capturer.cc | 
| diff --git a/remoting/host/ipc_video_frame_capturer.cc b/remoting/host/ipc_video_frame_capturer.cc | 
| index 3bca145f2602a1f4aef4f3b6e9f922d59a599891..0affc4d64b8e5069606d251d01e4be972b5f9102 100644 | 
| --- a/remoting/host/ipc_video_frame_capturer.cc | 
| +++ b/remoting/host/ipc_video_frame_capturer.cc | 
| @@ -4,9 +4,8 @@ | 
|  | 
| #include "remoting/host/ipc_video_frame_capturer.h" | 
|  | 
| -#include "remoting/base/capture_data.h" | 
| +#include "remoting/capturer/capture_data.h" | 
| #include "remoting/host/desktop_session_proxy.h" | 
| -#include "remoting/proto/control.pb.h" | 
|  | 
| namespace remoting { | 
|  | 
| @@ -56,9 +55,9 @@ void IpcVideoFrameCapturer::OnCaptureCompleted( | 
| } | 
|  | 
| void IpcVideoFrameCapturer::OnCursorShapeChanged( | 
| -    scoped_ptr<protocol::CursorShapeInfo> cursor_shape) { | 
| +    const MouseCursorShape& cursor_shape) { | 
| if (delegate_) | 
| -    delegate_->OnCursorShapeChanged(cursor_shape.Pass()); | 
| +    delegate_->OnCursorShapeChanged(cursor_shape); | 
| } | 
|  | 
| }  // namespace remoting | 
|  |