Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / ozone / ui / cursor / cursor_factory_ozone_wayland.cc
1 // Copyright 2014 Intel Corporation. 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 #include "ozone/ui/cursor/cursor_factory_ozone_wayland.h"
6
7 namespace ui {
8
9 CursorFactoryOzoneWayland::CursorFactoryOzoneWayland() {}
10
11 CursorFactoryOzoneWayland::~CursorFactoryOzoneWayland() {}
12
13 PlatformCursor CursorFactoryOzoneWayland::GetDefaultCursor(int type) {
14   return NULL;
15 }
16
17 PlatformCursor CursorFactoryOzoneWayland::CreateImageCursor(
18     const SkBitmap& bitmap,
19     const gfx::Point& hotspot) {
20   return NULL;
21 }
22
23 void CursorFactoryOzoneWayland::RefImageCursor(PlatformCursor cursor) {
24 }
25
26 void CursorFactoryOzoneWayland::UnrefImageCursor(PlatformCursor cursor) {
27 }
28
29 }  // namespace ui