diff options
Diffstat (limited to 'media/video/capture/screen/mouse_cursor_shape.cc')
-rw-r--r-- | media/video/capture/screen/mouse_cursor_shape.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/media/video/capture/screen/mouse_cursor_shape.cc b/media/video/capture/screen/mouse_cursor_shape.cc new file mode 100644 index 0000000..f57f7fb --- /dev/null +++ b/media/video/capture/screen/mouse_cursor_shape.cc @@ -0,0 +1,17 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "media/video/capture/screen/mouse_cursor_shape.h" + +namespace media { + +MouseCursorShape::MouseCursorShape() + : size(SkISize::Make(0, 0)), + hotspot(SkIPoint::Make(0, 0)) { +} + +MouseCursorShape::~MouseCursorShape() { +} + +} // namespace media |