| Index: chrome/browser/chromeos/drive/file_system/truncate_operation_unittest.cc
|
| diff --git a/chrome/browser/chromeos/drive/file_system/truncate_operation_unittest.cc b/chrome/browser/chromeos/drive/file_system/truncate_operation_unittest.cc
|
| index 1897809baa94df810835cf1cb24594c43f64263b..0109d94b26cc9baca76ec6ada77e0e541efd5a14 100644
|
| --- a/chrome/browser/chromeos/drive/file_system/truncate_operation_unittest.cc
|
| +++ b/chrome/browser/chromeos/drive/file_system/truncate_operation_unittest.cc
|
| @@ -114,7 +114,7 @@ TEST_F(TruncateOperationTest, Extend) {
|
|
|
| // The local file should be truncated.
|
| std::string content;
|
| - ASSERT_TRUE(file_util::ReadFileToString(local_path, &content));
|
| + ASSERT_TRUE(base::ReadFileToString(local_path, &content));
|
|
|
| EXPECT_EQ(file_size + 10, static_cast<int64>(content.size()));
|
| // All trailing 10 bytes should be '\0'.
|
|
|