| Index: third_party/WebKit/Source/web/tests/WebImageTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/WebImageTest.cpp b/third_party/WebKit/Source/web/tests/WebImageTest.cpp
|
| index 142d49e6a23843c7a68429f6f1a626518bded5a7..9ca4e9ae5840b1a9d9667427e4e52f92be3d4327 100644
|
| --- a/third_party/WebKit/Source/web/tests/WebImageTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/WebImageTest.cpp
|
| @@ -32,10 +32,8 @@
|
|
|
| #include "platform/SharedBuffer.h"
|
| #include "platform/testing/UnitTestHelpers.h"
|
| -#include "public/platform/Platform.h"
|
| #include "public/platform/WebData.h"
|
| #include "public/platform/WebSize.h"
|
| -#include "public/platform/WebUnitTestSupport.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace blink {
|
| @@ -46,7 +44,7 @@ static PassRefPtr<SharedBuffer> readFile(const char* fileName)
|
| filePath.append("/Source/web/tests/data/");
|
| filePath.append(fileName);
|
|
|
| - return Platform::current()->unitTestSupport()->readFromFile(filePath);
|
| + return testing::readFromFile(filePath);
|
| }
|
|
|
| TEST(WebImageTest, PNGImage)
|
|
|