Index: ui/views/native_cursor_aura.cc |
diff --git a/ui/views/native_cursor_aura.cc b/ui/views/native_cursor_aura.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..cafe684aa0b4f4e76ce383b2facfcde07288da80 |
--- /dev/null |
+++ b/ui/views/native_cursor_aura.cc |
@@ -0,0 +1,31 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "ui/views/native_cursor.h" |
+ |
+#include "ui/base/cursor/cursor.h" |
+ |
+namespace views { |
+ |
+gfx::NativeCursor GetNativeIBeamCursor() { |
+ return ui::kCursorIBeam; |
+} |
+ |
+gfx::NativeCursor GetNativeHandCursor() { |
+ return ui::kCursorHand; |
+} |
+ |
+gfx::NativeCursor GetNativeColumnResizeCursor() { |
+ return ui::kCursorColumnResize; |
+} |
+ |
+gfx::NativeCursor GetNativeEastWestResizeCursor() { |
+ return ui::kCursorEastWestResize; |
+} |
+ |
+gfx::NativeCursor GetNativeNorthSouthResizeCursor() { |
+ return ui::kCursorNorthSouthResize; |
+} |
+ |
+} // namespace views |