| Index: chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| diff --git a/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc b/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| index b414f7884910f461e91f5a6ebc27c19c5cb3911a..1193a9f9f7ceecf21e5a760e626774caff888a45 100644
|
| --- a/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| +++ b/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| @@ -72,11 +72,10 @@ class SyncableFileOperationRunnerTest : public testing::Test {
|
| ASSERT_TRUE(dir_.CreateUniqueTempDir());
|
|
|
| file_system_.SetUp(CannedSyncableFileSystem::QUOTA_ENABLED);
|
| - sync_context_ = new LocalFileSyncContext(
|
| - dir_.path(),
|
| - in_memory_env_.get(),
|
| - base::ThreadTaskRunnerHandle::Get().get(),
|
| - base::ThreadTaskRunnerHandle::Get().get());
|
| + sync_context_ =
|
| + new LocalFileSyncContext(dir_.GetPath(), in_memory_env_.get(),
|
| + base::ThreadTaskRunnerHandle::Get().get(),
|
| + base::ThreadTaskRunnerHandle::Get().get());
|
| ASSERT_EQ(
|
| SYNC_STATUS_OK,
|
| file_system_.MaybeInitializeFileSystemContext(sync_context_.get()));
|
| @@ -142,7 +141,7 @@ class SyncableFileOperationRunnerTest : public testing::Test {
|
| }
|
|
|
| bool CreateTempFile(base::FilePath* path) {
|
| - return base::CreateTemporaryFileInDir(dir_.path(), path);
|
| + return base::CreateTemporaryFileInDir(dir_.GetPath(), path);
|
| }
|
|
|
| content::TestBrowserThreadBundle thread_bundle_;
|
|
|