Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1286)

Unified Diff: third_party/WebKit/WebCore/html/ImageData.cpp

Issue 18178: Fix for bug 6100:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/WebCore/html/ImageData.h ('k') | third_party/WebKit/WebCore/html/ImageData.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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))
{
}
« no previous file with comments | « third_party/WebKit/WebCore/html/ImageData.h ('k') | third_party/WebKit/WebCore/html/ImageData.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698