| Index: content/test/weburl_loader_mock_factory.cc
|
| diff --git a/content/test/weburl_loader_mock_factory.cc b/content/test/weburl_loader_mock_factory.cc
|
| index 38a9d509e8f780c9d13ebd46dff6c85ebe9bf065..f4aa6778a344892008ecb0bd750bd59829ea4796 100644
|
| --- a/content/test/weburl_loader_mock_factory.cc
|
| +++ b/content/test/weburl_loader_mock_factory.cc
|
| @@ -182,7 +182,7 @@ bool WebURLLoaderMockFactory::ReadFile(const base::FilePath& file_path,
|
| int size = static_cast<int>(file_size);
|
| scoped_ptr<char[]> buffer(new char[size]);
|
| data->reset();
|
| - int read_count = file_util::ReadFile(file_path, buffer.get(), size);
|
| + int read_count = base::ReadFile(file_path, buffer.get(), size);
|
| if (read_count == -1)
|
| return false;
|
| DCHECK(read_count == size);
|
|
|