| Index: Source/WebCore/platform/graphics/BitmapImage.cpp
|
| diff --git a/Source/WebCore/platform/graphics/BitmapImage.cpp b/Source/WebCore/platform/graphics/BitmapImage.cpp
|
| index cf43073221acad7f3fc16d0c14677fad4afa49e9..6255fd88265e2b96c61887954ccf559b785af339 100644
|
| --- a/Source/WebCore/platform/graphics/BitmapImage.cpp
|
| +++ b/Source/WebCore/platform/graphics/BitmapImage.cpp
|
| @@ -588,9 +588,7 @@ void FrameData::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
|
| {
|
| MemoryClassInfo info(memoryObjectInfo, this, PlatformMemoryTypes::Image);
|
| memoryObjectInfo->setClassName("FrameData");
|
| -#if OS(WINCE) && !PLATFORM(QT)
|
| - info.addRawBuffer(m_frame.get(), m_frameBytes, "NativeImage", "frame");
|
| -#elif USE(SKIA)
|
| +#if USE(SKIA)
|
| info.addMember(m_frame, "frame", WTF::RetainingPointer);
|
| #else
|
| info.addRawBuffer(m_frame, m_frameBytes, "NativeImage", "frame");
|
|
|