| Index: Source/WebCore/platform/graphics/NativeImagePtr.h
|
| diff --git a/Source/WebCore/platform/graphics/NativeImagePtr.h b/Source/WebCore/platform/graphics/NativeImagePtr.h
|
| index 968f8e1e11d96ab573352af5e85ac6733577992d..8cd5a0d1b1bf828c9acd53c9bdf3b5c215efbfe4 100644
|
| --- a/Source/WebCore/platform/graphics/NativeImagePtr.h
|
| +++ b/Source/WebCore/platform/graphics/NativeImagePtr.h
|
| @@ -30,12 +30,6 @@
|
|
|
| #if USE(CG)
|
| typedef struct CGImage* CGImageRef;
|
| -#elif PLATFORM(QT)
|
| -#include "NativeImageQt.h"
|
| -#include <qglobal.h>
|
| -QT_BEGIN_NAMESPACE
|
| -class QPixmap;
|
| -QT_END_NAMESPACE
|
| #elif USE(SKIA)
|
| #include "NativeImageSkia.h"
|
| namespace WebCore {
|
| @@ -53,8 +47,6 @@ namespace WebCore {
|
|
|
| #if USE(CG)
|
| typedef CGImageRef NativeImagePtr;
|
| -#elif PLATFORM(QT)
|
| -typedef QPixmap* NativeImagePtr;
|
| #elif PLATFORM(OPENVG)
|
| class TiledImageOpenVG;
|
| typedef TiledImageOpenVG* NativeImagePtr;
|
| @@ -63,8 +55,6 @@ typedef WebCore::NativeImageSkia* NativeImagePtr;
|
| void reportMemoryUsage(const NativeImageSkia*, WTF::MemoryObjectInfo*);
|
| #elif OS(WINCE)
|
| typedef RefPtr<SharedBitmap> NativeImagePtr;
|
| -#elif PLATFORM(BLACKBERRY)
|
| -typedef void* NativeImagePtr;
|
| #endif
|
|
|
| }
|
|
|