| Index: chrome/browser/sync_file_system/local/canned_syncable_file_system.cc
|
| diff --git a/chrome/browser/sync_file_system/local/canned_syncable_file_system.cc b/chrome/browser/sync_file_system/local/canned_syncable_file_system.cc
|
| index c0381566e96616359d65a014b437fad6caff53a2..3a2d71d8b5d7e867b407e680550ebf44ccf02e3d 100644
|
| --- a/chrome/browser/sync_file_system/local/canned_syncable_file_system.cc
|
| +++ b/chrome/browser/sync_file_system/local/canned_syncable_file_system.cc
|
| @@ -107,7 +107,7 @@ void OnCreateSnapshotFileAndVerifyData(
|
| }
|
| EXPECT_EQ(expected_data.size(), static_cast<size_t>(file_info.size));
|
| std::string data;
|
| - const bool read_status = file_util::ReadFileToString(platform_path, &data);
|
| + const bool read_status = base::ReadFileToString(platform_path, &data);
|
| EXPECT_TRUE(read_status);
|
| EXPECT_EQ(expected_data, data);
|
| callback.Run(result);
|
|
|