Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3093)

Unified Diff: chrome/browser/sync_file_system/drive_backend/sync_worker_unittest.cc

Issue 2317023003: sync and signin: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Just rebased Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync_file_system/drive_backend/sync_worker_unittest.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/sync_worker_unittest.cc b/chrome/browser/sync_file_system/drive_backend/sync_worker_unittest.cc
index 9a860fce85dd64b68c5245cc863c23b408737bbe..c1a0b57f74a39554b74b131af51fc4f0183bfde9 100644
--- a/chrome/browser/sync_file_system/drive_backend/sync_worker_unittest.cc
+++ b/chrome/browser/sync_file_system/drive_backend/sync_worker_unittest.cc
@@ -120,10 +120,9 @@ class SyncWorkerTest : public testing::Test,
base::ThreadTaskRunnerHandle::Get() /* worker_task_runner */,
nullptr /* worker_pool */));
- sync_worker_.reset(new SyncWorker(
- profile_dir_.path(),
- extension_service_->AsWeakPtr(),
- in_memory_env_.get()));
+ sync_worker_.reset(new SyncWorker(profile_dir_.GetPath(),
+ extension_service_->AsWeakPtr(),
+ in_memory_env_.get()));
sync_worker_->Initialize(std::move(sync_engine_context));
sync_worker_->SetSyncEnabled(true);

Powered by Google App Engine
This is Rietveld 408576698