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

Unified Diff: chrome/browser/sync_file_system/drive_backend/register_app_task_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/register_app_task_unittest.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/register_app_task_unittest.cc b/chrome/browser/sync_file_system/drive_backend/register_app_task_unittest.cc
index 3343694ec9aa6d4a18bf2e740a989f51d66fdd02..0bee87d9bead26514f693046ef92e7c599681872 100644
--- a/chrome/browser/sync_file_system/drive_backend/register_app_task_unittest.cc
+++ b/chrome/browser/sync_file_system/drive_backend/register_app_task_unittest.cc
@@ -85,7 +85,7 @@ class RegisterAppTaskTest : public testing::Test {
options.create_if_missing = true;
options.env = in_memory_env_.get();
leveldb::Status status =
- leveldb::DB::Open(options, database_dir_.path().AsUTF8Unsafe(), &db);
+ leveldb::DB::Open(options, database_dir_.GetPath().AsUTF8Unsafe(), &db);
EXPECT_TRUE(status.ok());
return base::MakeUnique<LevelDBWrapper>(base::WrapUnique(db));
}

Powered by Google App Engine
This is Rietveld 408576698