| Index: chrome/browser/chromeos/drive/file_system_unittest.cc
|
| diff --git a/chrome/browser/chromeos/drive/file_system_unittest.cc b/chrome/browser/chromeos/drive/file_system_unittest.cc
|
| index 8a7ec262335a7ee1201dce0489e110ff2a3368d2..04e5ba55b82d1415e76ca3c2a5a39abced98e824 100644
|
| --- a/chrome/browser/chromeos/drive/file_system_unittest.cc
|
| +++ b/chrome/browser/chromeos/drive/file_system_unittest.cc
|
| @@ -749,7 +749,7 @@ TEST_F(FileSystemTest, OpenAndCloseFile) {
|
| // Verify that the file contents match the expected contents.
|
| const std::string kExpectedContent = "This is some test content.";
|
| std::string cache_file_data;
|
| - EXPECT_TRUE(file_util::ReadFileToString(opened_file_path, &cache_file_data));
|
| + EXPECT_TRUE(base::ReadFileToString(opened_file_path, &cache_file_data));
|
| EXPECT_EQ(kExpectedContent, cache_file_data);
|
|
|
| FileCacheEntry cache_entry;
|
|
|