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

Unified Diff: components/password_manager/core/browser/login_database_ios_unittest.cc

Issue 2320653002: Autofill and password_manager: 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/password_manager/core/browser/login_database_ios_unittest.cc
diff --git a/components/password_manager/core/browser/login_database_ios_unittest.cc b/components/password_manager/core/browser/login_database_ios_unittest.cc
index 201bafe5fbe7108bac47308b2649e24ec5b2e72d..b604d673e0ef75e3e253af75f04bf4ea8a62349e 100644
--- a/components/password_manager/core/browser/login_database_ios_unittest.cc
+++ b/components/password_manager/core/browser/login_database_ios_unittest.cc
@@ -27,7 +27,7 @@ class LoginDatabaseIOSTest : public PlatformTest {
ClearKeychain();
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
base::FilePath login_db_path =
- temp_dir_.path().AppendASCII("temp_login.db");
+ temp_dir_.GetPath().AppendASCII("temp_login.db");
login_db_.reset(new password_manager::LoginDatabase(login_db_path));
login_db_->Init();
}

Powered by Google App Engine
This is Rietveld 408576698