blob: f57f7fb21991fa8e80713d6cbcf6c9275468eecf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|