diff options
Diffstat (limited to 'WebCore/platform/graphics/haiku/ImageBufferData.h')
-rw-r--r-- | WebCore/platform/graphics/haiku/ImageBufferData.h | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/WebCore/platform/graphics/haiku/ImageBufferData.h b/WebCore/platform/graphics/haiku/ImageBufferData.h index f978c34..7c676cd 100644 --- a/WebCore/platform/graphics/haiku/ImageBufferData.h +++ b/WebCore/platform/graphics/haiku/ImageBufferData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009 Maxime Simon <simon.maxime@gmail.com> + * Copyright (C) 2010 Stephan Aßmus <superstippi@gmx.de> * * All rights reserved. * @@ -28,16 +28,23 @@ #ifndef ImageBufferData_h #define ImageBufferData_h +#include <Bitmap.h> +#include <View.h> + namespace WebCore { - class IntSize; +class IntSize; + +class ImageBufferData { +public: + ImageBufferData(const IntSize&); + ~ImageBufferData(); - class ImageBufferData { - public: - ImageBufferData(const IntSize&); - }; + BBitmap m_bitmap; + BView m_view; +}; -} // namespace WebCore +} // namespace WebCore -#endif // ImageBufferData_h +#endif // ImageBufferData_h |