| Index: chrome/browser/chromeos/drive/sync_client_unittest.cc
|
| diff --git a/chrome/browser/chromeos/drive/sync_client_unittest.cc b/chrome/browser/chromeos/drive/sync_client_unittest.cc
|
| index d67be2360c553abf2885090cc492507f4ca4caa9..2e41540f971cda4a321d36a5687e253f7597ddba 100644
|
| --- a/chrome/browser/chromeos/drive/sync_client_unittest.cc
|
| +++ b/chrome/browser/chromeos/drive/sync_client_unittest.cc
|
| @@ -286,13 +286,13 @@ TEST_F(SyncClientTest, ExistingPinnedFiles) {
|
| std::string content;
|
| EXPECT_EQ(FILE_ERROR_OK, cache_->GetFile(resource_ids_["fetched"],
|
| &cache_file));
|
| - EXPECT_TRUE(file_util::ReadFileToString(cache_file, &content));
|
| + EXPECT_TRUE(base::ReadFileToString(cache_file, &content));
|
| EXPECT_EQ(kRemoteContent, content);
|
| content.clear();
|
|
|
| EXPECT_EQ(FILE_ERROR_OK, cache_->GetFile(resource_ids_["dirty"],
|
| &cache_file));
|
| - EXPECT_TRUE(file_util::ReadFileToString(cache_file, &content));
|
| + EXPECT_TRUE(base::ReadFileToString(cache_file, &content));
|
| EXPECT_EQ(kLocalContent, content);
|
| }
|
|
|
|
|