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

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

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/DerivedSources.make ('k') | third_party/WebKit/WebCore/html/ImageData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/WebCore/html/ImageData.h
===================================================================
--- third_party/WebKit/WebCore/html/ImageData.h (revision 8312)
+++ third_party/WebKit/WebCore/html/ImageData.h (working copy)
@@ -29,7 +29,7 @@
#ifndef ImageData_h
#define ImageData_h
-#include <runtime/ByteArray.h>
+#include "CanvasPixelArray.h"
#include <wtf/RefCounted.h>
#include <wtf/RefPtr.h>
@@ -41,13 +41,13 @@
unsigned width() const { return m_width; }
unsigned height() const { return m_height; }
- JSC::ByteArray* data() const { return m_data.get(); }
+ CanvasPixelArray* data() const { return m_data.get(); }
private:
ImageData(unsigned width, unsigned height);
unsigned m_width;
unsigned m_height;
- RefPtr<JSC::ByteArray> m_data;
+ RefPtr<CanvasPixelArray> m_data;
};
} // namespace WebCore
« no previous file with comments | « third_party/WebKit/WebCore/DerivedSources.make ('k') | third_party/WebKit/WebCore/html/ImageData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698