Index: ui/base/cursor/cursor.h |
diff --git a/ui/base/cursor/cursor.h b/ui/base/cursor/cursor.h |
index 72999d4c3be41e8cfc65a694a63129f555d60ec6..c0c291c380194c2bb161f7cf65193206ed6ac0ce 100644 |
--- a/ui/base/cursor/cursor.h |
+++ b/ui/base/cursor/cursor.h |
@@ -19,12 +19,18 @@ typedef struct HICON__* HICON; |
typedef HICON HCURSOR; |
#endif |
+#if defined(USE_OZONE) |
+class SkBitmap; |
+#endif |
+ |
namespace ui { |
#if defined(OS_WIN) |
typedef ::HCURSOR PlatformCursor; |
#elif defined(USE_X11) |
typedef unsigned long PlatformCursor; |
+#elif defined(USE_OZONE) |
+typedef const SkBitmap* PlatformCursor; |
#else |
typedef void* PlatformCursor; |
#endif |