summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/DragImage.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/DragImage.h')
-rw-r--r--WebCore/platform/DragImage.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/WebCore/platform/DragImage.h b/WebCore/platform/DragImage.h
index 0196971..f9b7ff3 100644
--- a/WebCore/platform/DragImage.h
+++ b/WebCore/platform/DragImage.h
@@ -48,6 +48,8 @@ class wxDragImage;
#include "DragImageRef.h"
#elif PLATFORM(GTK)
typedef struct _GdkPixbuf GdkPixbuf;
+#elif PLATFORM(HAIKU)
+class BBitmap;
#endif
//We need to #define YOffset as it needs to be shared with WebKit
@@ -71,7 +73,9 @@ namespace WebCore {
#elif PLATFORM(WX)
typedef wxDragImage* DragImageRef;
#elif PLATFORM(GTK)
- typedef GdkPixBuf* DragImageRef;
+ typedef GdkPixbuf* DragImageRef;
+#elif PLATFORM(HAIKU)
+ typedef BBitmap* DragImageRef;
#elif PLATFORM(ANDROID)
typedef void* DragImageRef;
#endif