| 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_;
|
|
|