summaryrefslogtreecommitdiffstats
path: root/ui/aura/cursor.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/aura/cursor.h')
-rw-r--r--ui/aura/cursor.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/ui/aura/cursor.h b/ui/aura/cursor.h
new file mode 100644
index 0000000..f8e8dda
--- /dev/null
+++ b/ui/aura/cursor.h
@@ -0,0 +1,23 @@
+// Copyright (c) 2011 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.
+
+#ifndef UI_AURA_CURSOR_H_
+#define UI_AURA_CURSOR_H_
+#pragma once
+
+#include "ui/aura/aura_export.h"
+
+namespace aura {
+
+enum AURA_EXPORT CursorType {
+ CURSOR_POINTER,
+ CURSOR_LINK,
+ CURSOR_WAIT,
+ CURSOR_SIZE_HORIZONTAL,
+ CURSOR_SIZE_VERTICAL
+};
+
+} // namespace aura
+
+#endif // UI_AURA_CURSOR_H_