Chromium Code Reviews| Index: remoting/host/ipc_video_frame_capturer.h |
| diff --git a/remoting/host/ipc_video_frame_capturer.h b/remoting/host/ipc_video_frame_capturer.h |
| index 71d85767c25a57c936767fb138a63e1d1ec9cdc1..5922d7305e76ab2e38c76fe67b52b39976e07636 100644 |
| --- a/remoting/host/ipc_video_frame_capturer.h |
| +++ b/remoting/host/ipc_video_frame_capturer.h |
| @@ -6,14 +6,15 @@ |
| #define REMOTING_HOST_IPC_VIDEO_FRAME_CAPTURER_H_ |
| #include "base/memory/ref_counted.h" |
| -#include "remoting/host/video_frame_capturer.h" |
| +#include "remoting/capturer/video_frame_capturer.h" |
| namespace IPC { |
| class Message; |
| -} // IPC |
| +} // namespace IPC |
| namespace remoting { |
| +struct MouseCursorShape; |
|
alexeypa (please no reviews)
2012/12/12 19:53:10
nit: Move |MouseCursorShare| after |DesktopSession
Sergey Ulanov
2012/12/13 02:57:23
Done.
|
| class DesktopSessionProxy; |
| // Routes VideoFrameCapturer calls though the IPC channel to the desktop session |
| @@ -37,7 +38,7 @@ class IpcVideoFrameCapturer : public VideoFrameCapturer { |
| void OnCaptureCompleted(scoped_refptr<CaptureData> capture_data); |
| // Called when the cursor shape has changed. |
| - void OnCursorShapeChanged(scoped_ptr<protocol::CursorShapeInfo> cursor_shape); |
| + void OnCursorShapeChanged(scoped_ptr<MouseCursorShape> cursor_shape); |
| private: |
| // Points to the delegate passed to VideoFrameCapturer::Start(). |