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.
4
5#include "ui/views/native_cursor.h"
6
7#include "ui/base/cursor/cursor.h"
8
9namespace views {
10
11gfx::NativeCursor GetNativeIBeamCursor() {
12  return ui::kCursorIBeam;
13}
14
15gfx::NativeCursor GetNativeHandCursor() {
16  return ui::kCursorHand;
17}
18
19gfx::NativeCursor GetNativeColumnResizeCursor() {
20  return ui::kCursorColumnResize;
21}
22
23gfx::NativeCursor GetNativeEastWestResizeCursor() {
24  return ui::kCursorEastWestResize;
25}
26
27gfx::NativeCursor GetNativeNorthSouthResizeCursor() {
28  return ui::kCursorNorthSouthResize;
29}
30
31}  // namespace views
32