Move content_settings_pattern and content_settings_pattern_parser to the content_sett...
[chromium-blink-merge.git] / ui / views / native_cursor_aura.cc
blobcafe684aa0b4f4e76ce383b2facfcde07288da80
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"
9 namespace views {
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;
31 } // namespace views