| Index: chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc
|
| diff --git a/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc b/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc
|
| index 21547212eb98098e9d04d1991c6bd1153cb07b88..483d53b9dcde65743f1de1624f372f9de638d7ae 100644
|
| --- a/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc
|
| +++ b/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc
|
| @@ -697,7 +697,7 @@ TEST_F(SyncBackendHostTest, TestStartupWithOldSyncData) {
|
| profile_->GetPath().AppendASCII("Sync Data");
|
| base::FilePath sync_file = temp_directory.AppendASCII("SyncData.sqlite3");
|
| ASSERT_TRUE(base::CreateDirectory(temp_directory));
|
| - ASSERT_NE(-1, file_util::WriteFile(sync_file, nonsense, strlen(nonsense)));
|
| + ASSERT_NE(-1, base::WriteFile(sync_file, nonsense, strlen(nonsense)));
|
|
|
| InitializeBackend(true);
|
|
|
|
|