summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/drive/file_system_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/chromeos/drive/file_system_unittest.cc')
-rw-r--r--chrome/browser/chromeos/drive/file_system_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/drive/file_system_unittest.cc b/chrome/browser/chromeos/drive/file_system_unittest.cc
index 8a7ec26..04e5ba5 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;