| Index: cc/test/pixel_test_utils.cc
|
| diff --git a/cc/test/pixel_test_utils.cc b/cc/test/pixel_test_utils.cc
|
| index 1ef0b74fc3354490bbecee259db0e656b9d3c7f4..d9134920e9e99ba7dc87a991bdcb55ee7459aa75 100644
|
| --- a/cc/test/pixel_test_utils.cc
|
| +++ b/cc/test/pixel_test_utils.cc
|
| @@ -31,7 +31,7 @@ bool WritePNGFile(const SkBitmap& bitmap, const base::FilePath& file_path,
|
| bool ReadPNGFile(const base::FilePath& file_path, SkBitmap* bitmap) {
|
| DCHECK(bitmap);
|
| std::string png_data;
|
| - return file_util::ReadFileToString(file_path, &png_data) &&
|
| + return base::ReadFileToString(file_path, &png_data) &&
|
| gfx::PNGCodec::Decode(reinterpret_cast<unsigned char*>(&png_data[0]),
|
| png_data.length(),
|
| bitmap);
|
|
|