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

Unified Diff: chrome/browser/sync_file_system/drive_backend/metadata_database_index_on_disk_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/metadata_database_index_on_disk_unittest.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/metadata_database_index_on_disk_unittest.cc b/chrome/browser/sync_file_system/drive_backend/metadata_database_index_on_disk_unittest.cc
index 789c1dffd8c250ca427056a2a92076074b93174b..a01b05c4949fb5386a27e5c80e2abaf6a92975ce 100644
--- a/chrome/browser/sync_file_system/drive_backend/metadata_database_index_on_disk_unittest.cc
+++ b/chrome/browser/sync_file_system/drive_backend/metadata_database_index_on_disk_unittest.cc
@@ -122,7 +122,7 @@ class MetadataDatabaseIndexOnDiskTest : public testing::Test {
options.max_open_files = 0; // Use minimum.
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