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

Unified Diff: third_party/WebKit/Source/core/html/canvas/CanvasAsyncBlobCreatorTest.cpp

Issue 2636533002: Revert of Implement color management for ImageData
Patch Set: Created 3 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/Source/core/html/ImageData.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/canvas/CanvasAsyncBlobCreatorTest.cpp
diff --git a/third_party/WebKit/Source/core/html/canvas/CanvasAsyncBlobCreatorTest.cpp b/third_party/WebKit/Source/core/html/canvas/CanvasAsyncBlobCreatorTest.cpp
index c5a39da8e678813555470eac334b8dde6c0d948d..6a771c16b7c781820ff5b717016c17642157476e 100644
--- a/third_party/WebKit/Source/core/html/canvas/CanvasAsyncBlobCreatorTest.cpp
+++ b/third_party/WebKit/Source/core/html/canvas/CanvasAsyncBlobCreatorTest.cpp
@@ -200,7 +200,7 @@
void CanvasAsyncBlobCreatorTest::prepareMockCanvasAsyncBlobCreatorFailPng() {
IntSize testSize(0, 0);
- ImageData* imageData = ImageData::createForTest(testSize);
+ ImageData* imageData = ImageData::create(testSize);
// We reuse the class MockCanvasAsyncBlobCreatorWithoutCompletePng because
// this test case is expected to fail at initialization step before
@@ -229,7 +229,7 @@
void CanvasAsyncBlobCreatorTest::prepareMockCanvasAsyncBlobCreatorFailJpeg() {
IntSize testSize(0, 0);
- ImageData* imageData = ImageData::createForTest(testSize);
+ ImageData* imageData = ImageData::create(testSize);
// We reuse the class MockCanvasAsyncBlobCreatorWithoutCompleteJpeg because
// this test case is expected to fail at initialization step before
« no previous file with comments | « third_party/WebKit/Source/core/html/ImageData.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698