| 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
|
|
|