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

Unified Diff: media/video/capture/screen/mouse_cursor_shape.h

Issue 13983010: Use webrtc::DesktopCapturer for screen capturer implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: q Created 7 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
Index: media/video/capture/screen/mouse_cursor_shape.h
diff --git a/media/video/capture/screen/mouse_cursor_shape.h b/media/video/capture/screen/mouse_cursor_shape.h
index e2d57f1f9b3ee88773b227f3f0e24db45355e15d..2b763c34ec8a00e6a454c10ee984caed489db840 100644
--- a/media/video/capture/screen/mouse_cursor_shape.h
+++ b/media/video/capture/screen/mouse_cursor_shape.h
@@ -7,9 +7,9 @@
#include <string>
+#include "base/basictypes.h"
#include "media/base/media_export.h"
-#include "third_party/skia/include/core/SkPoint.h"
-#include "third_party/skia/include/core/SkSize.h"
+#include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
namespace media {
@@ -19,10 +19,10 @@ struct MEDIA_EXPORT MouseCursorShape {
~MouseCursorShape();
// Size of the cursor in screen pixels.
- SkISize size;
+ webrtc::DesktopSize size;
// Coordinates of the cursor hotspot relative to upper-left corner.
- SkIPoint hotspot;
+ webrtc::DesktopVector hotspot;
// Cursor pixmap data in 32-bit BGRA format.
std::string data;

Powered by Google App Engine
This is Rietveld 408576698