summaryrefslogtreecommitdiffstats
path: root/remoting/host/ipc_video_frame_capturer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/ipc_video_frame_capturer.cc')
-rw-r--r--remoting/host/ipc_video_frame_capturer.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/remoting/host/ipc_video_frame_capturer.cc b/remoting/host/ipc_video_frame_capturer.cc
index ce35bc1..21aed74 100644
--- a/remoting/host/ipc_video_frame_capturer.cc
+++ b/remoting/host/ipc_video_frame_capturer.cc
@@ -4,8 +4,8 @@
#include "remoting/host/ipc_video_frame_capturer.h"
-#include "remoting/capturer/capture_data.h"
-#include "remoting/capturer/mouse_cursor_shape.h"
+#include "media/video/capture/screen/mouse_cursor_shape.h"
+#include "media/video/capture/screen/screen_capture_data.h"
#include "remoting/host/desktop_session_proxy.h"
namespace remoting {
@@ -38,13 +38,13 @@ void IpcVideoFrameCapturer::CaptureFrame() {
}
void IpcVideoFrameCapturer::OnCaptureCompleted(
- scoped_refptr<CaptureData> capture_data) {
+ scoped_refptr<media::ScreenCaptureData> capture_data) {
if (delegate_)
delegate_->OnCaptureCompleted(capture_data);
}
void IpcVideoFrameCapturer::OnCursorShapeChanged(
- scoped_ptr<MouseCursorShape> cursor_shape) {
+ scoped_ptr<media::MouseCursorShape> cursor_shape) {
if (delegate_)
delegate_->OnCursorShapeChanged(cursor_shape.Pass());
}