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

Unified Diff: chrome/browser/password_manager/password_store_x_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: chrome/browser/password_manager/password_store_x_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_x_unittest.cc b/chrome/browser/password_manager/password_store_x_unittest.cc
index 43e6eb07b3fddcee60c7f0cbbe14646aa5175f87..4c227b3fa2f8af654250d642f9359c0fb20bd886 100644
--- a/chrome/browser/password_manager/password_store_x_unittest.cc
+++ b/chrome/browser/password_manager/password_store_x_unittest.cc
@@ -353,7 +353,7 @@ void PasswordStoreXTestDelegate::SetupTempDir() {
}
base::FilePath PasswordStoreXTestDelegate::test_login_db_file_path() const {
- return temp_dir_.path().Append(FILE_PATH_LITERAL("login_test"));
+ return temp_dir_.GetPath().Append(FILE_PATH_LITERAL("login_test"));
}
class PasswordStoreXNoBackendTestDelegate : public PasswordStoreXTestDelegate {
@@ -391,7 +391,7 @@ class PasswordStoreXTest : public testing::TestWithParam<BackendType> {
void TearDown() override { base::RunLoop().RunUntilIdle(); }
base::FilePath test_login_db_file_path() const {
- return temp_dir_.path().Append(FILE_PATH_LITERAL("login_test"));
+ return temp_dir_.GetPath().Append(FILE_PATH_LITERAL("login_test"));
}
content::TestBrowserThreadBundle thread_bundle_;

Powered by Google App Engine
This is Rietveld 408576698