Chromium Code Reviews| Index: third_party/WebKit/WebCore/html/ImageData.cpp |
| =================================================================== |
| --- third_party/WebKit/WebCore/html/ImageData.cpp (revision 8312) |
| +++ third_party/WebKit/WebCore/html/ImageData.cpp (working copy) |
| @@ -39,7 +39,7 @@ |
| ImageData::ImageData(unsigned width, unsigned height) |
| : m_width(width) |
| , m_height(height) |
| - , m_data(JSC::ByteArray::create(width * height * 4)) |
| + , m_data(CanvasPixelArray::create(width * height * 4)) |
| { |
| } |