| Index: content/browser/download/download_browsertest.cc
|
| diff --git a/content/browser/download/download_browsertest.cc b/content/browser/download/download_browsertest.cc
|
| index b638cfa44a4d8e1dcfe48df8e5840f0dcc6b9c10..767819edbcfe98419912a45dabb2ac60c8c7091e 100644
|
| --- a/content/browser/download/download_browsertest.cc
|
| +++ b/content/browser/download/download_browsertest.cc
|
| @@ -600,7 +600,7 @@ class DownloadContentTest : public ContentBrowserTest {
|
| const int64 file_size) {
|
| std::string file_contents;
|
|
|
| - bool read = file_util::ReadFileToString(path, &file_contents);
|
| + bool read = base::ReadFileToString(path, &file_contents);
|
| EXPECT_TRUE(read) << "Failed reading file: " << path.value() << std::endl;
|
| if (!read)
|
| return false; // Couldn't read the file.
|
| @@ -674,7 +674,7 @@ class DownloadContentTest : public ContentBrowserTest {
|
|
|
| if (file_exists) {
|
| std::string file_contents;
|
| - EXPECT_TRUE(file_util::ReadFileToString(
|
| + EXPECT_TRUE(base::ReadFileToString(
|
| download->GetFullPath(), &file_contents));
|
|
|
| ASSERT_EQ(static_cast<size_t>(received_bytes), file_contents.size());
|
|
|