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

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: Created 7 years, 7 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..1e540562af5c578d1bfc9967f692725d1d2df52d 100644
--- a/media/video/capture/screen/mouse_cursor_shape.h
+++ b/media/video/capture/screen/mouse_cursor_shape.h
@@ -7,22 +7,19 @@
#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 {
// Type used to return mouse cursor shape from video capturers.
struct MEDIA_EXPORT MouseCursorShape {
- 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;
« no previous file with comments | « media/video/capture/screen/mac/desktop_configuration.mm ('k') | media/video/capture/screen/mouse_cursor_shape.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698