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

Unified Diff: components/sync/core_impl/sync_manager_impl_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: components/sync/core_impl/sync_manager_impl_unittest.cc
diff --git a/components/sync/core_impl/sync_manager_impl_unittest.cc b/components/sync/core_impl/sync_manager_impl_unittest.cc
index a52ecbe19d42a3a272749984b0df1c0bd8d2d087..5ff5a15fa9e4ccc39336916fc3d738076eb32599 100644
--- a/components/sync/core_impl/sync_manager_impl_unittest.cc
+++ b/components/sync/core_impl/sync_manager_impl_unittest.cc
@@ -986,7 +986,7 @@ class SyncManagerTest : public testing::Test,
workers.push_back(worker);
SyncManager::InitArgs args;
- args.database_location = temp_dir_.path();
+ args.database_location = temp_dir_.GetPath();
args.service_url = GURL("https://example.com/");
args.post_factory = std::unique_ptr<HttpPostProviderFactory>(
new TestHttpPostProviderFactory());

Powered by Google App Engine
This is Rietveld 408576698