summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/NativeImagePtr.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/graphics/NativeImagePtr.h')
-rw-r--r--Source/WebCore/platform/graphics/NativeImagePtr.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/WebCore/platform/graphics/NativeImagePtr.h b/Source/WebCore/platform/graphics/NativeImagePtr.h
index 1fc3fa6c9..c98f8c25a 100644
--- a/Source/WebCore/platform/graphics/NativeImagePtr.h
+++ b/Source/WebCore/platform/graphics/NativeImagePtr.h
@@ -36,7 +36,7 @@ typedef struct CGImage* CGImageRef;
#elif PLATFORM(QT)
#include <qglobal.h>
QT_BEGIN_NAMESPACE
-class QImage;
+class QPixmap;
QT_END_NAMESPACE
#elif USE(CAIRO)
#include "NativeImageCairo.h"
@@ -48,12 +48,16 @@ class NativeImageSkia;
#include "SharedBitmap.h"
#endif
+namespace WTF {
+class MemoryObjectInfo;
+}
+
namespace WebCore {
#if USE(CG)
typedef CGImageRef NativeImagePtr;
#elif PLATFORM(QT)
-typedef QImage* NativeImagePtr;
+typedef QPixmap* NativeImagePtr;
#elif PLATFORM(OPENVG)
class TiledImageOpenVG;
typedef TiledImageOpenVG* NativeImagePtr;
@@ -67,6 +71,7 @@ typedef wxBitmap* NativeImagePtr;
typedef WebCore::NativeImageCairo* NativeImagePtr;
#elif USE(SKIA)
typedef WebCore::NativeImageSkia* NativeImagePtr;
+void reportMemoryUsage(const NativeImageSkia* const&, WTF::MemoryObjectInfo*);
#elif OS(WINCE)
typedef RefPtr<SharedBitmap> NativeImagePtr;
#elif PLATFORM(BLACKBERRY)