1 // Copyright 2014 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.
5 #include "ui/views/native_cursor.h"
7 #include "ui/base/cursor/cursor.h"
11 gfx::NativeCursor
GetNativeIBeamCursor() {
12 return ui::kCursorIBeam
;
15 gfx::NativeCursor
GetNativeHandCursor() {
16 return ui::kCursorHand
;
19 gfx::NativeCursor
GetNativeColumnResizeCursor() {
20 return ui::kCursorColumnResize
;
23 gfx::NativeCursor
GetNativeEastWestResizeCursor() {
24 return ui::kCursorEastWestResize
;
27 gfx::NativeCursor
GetNativeNorthSouthResizeCursor() {
28 return ui::kCursorNorthSouthResize
;