| OLD | NEW |
| (Empty) |
| 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 | |
| 9 namespace views { | |
| 10 | |
| 11 gfx::NativeCursor GetNativeIBeamCursor() { | |
| 12 return ui::kCursorIBeam; | |
| 13 } | |
| 14 | |
| 15 gfx::NativeCursor GetNativeHandCursor() { | |
| 16 return ui::kCursorHand; | |
| 17 } | |
| 18 | |
| 19 gfx::NativeCursor GetNativeColumnResizeCursor() { | |
| 20 return ui::kCursorColumnResize; | |
| 21 } | |
| 22 | |
| 23 gfx::NativeCursor GetNativeEastWestResizeCursor() { | |
| 24 return ui::kCursorEastWestResize; | |
| 25 } | |
| 26 | |
| 27 gfx::NativeCursor GetNativeNorthSouthResizeCursor() { | |
| 28 return ui::kCursorNorthSouthResize; | |
| 29 } | |
| 30 | |
| 31 } // namespace views | |
| OLD | NEW |