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

Side by Side Diff: media/video/capture/screen/mouse_cursor_shape.h

Issue 15692018: Remove screen capturers from media/video/capture/screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MEDIA_VIDEO_CAPTURE_SCREEN_MOUSE_CURSOR_SHAPE_H_
6 #define MEDIA_VIDEO_CAPTURE_SCREEN_MOUSE_CURSOR_SHAPE_H_
7
8 #include <string>
9
10 #include "base/basictypes.h"
11 #include "media/base/media_export.h"
12 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
13
14 namespace media {
15
16 // Type used to return mouse cursor shape from video capturers.
17 struct MEDIA_EXPORT MouseCursorShape {
18 // Size of the cursor in screen pixels.
19 webrtc::DesktopSize size;
20
21 // Coordinates of the cursor hotspot relative to upper-left corner.
22 webrtc::DesktopVector hotspot;
23
24 // Cursor pixmap data in 32-bit BGRA format.
25 std::string data;
26 };
27
28 } // namespace media
29
30 #endif // MEDIA_VIDEO_CAPTURE_SCREEN_MOUSE_CURSOR_SHAPE_H_
OLDNEW
« no previous file with comments | « media/video/capture/screen/mac/scoped_pixel_buffer_object.cc ('k') | media/video/capture/screen/screen_capture_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698