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

Unified Diff: chrome/browser/password_manager/password_store_mac_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
« no previous file with comments | « no previous file | chrome/browser/password_manager/password_store_proxy_mac_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/password_store_mac_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_mac_unittest.cc b/chrome/browser/password_manager/password_store_mac_unittest.cc
index ee95d538b7d3c0377984c0e85d83a7a33156f6c1..7acdeb68ce7640e7d0979976a6e96615a2170f88 100644
--- a/chrome/browser/password_manager/password_store_mac_unittest.cc
+++ b/chrome/browser/password_manager/password_store_mac_unittest.cc
@@ -235,7 +235,7 @@ void PasswordStoreMacTestDelegate::ClosePasswordStore() {
}
base::FilePath PasswordStoreMacTestDelegate::test_login_db_file_path() const {
- return db_dir_.path().Append(FILE_PATH_LITERAL("login.db"));
+ return db_dir_.GetPath().Append(FILE_PATH_LITERAL("login.db"));
}
} // namespace
@@ -1366,7 +1366,7 @@ class PasswordStoreMacTest : public testing::Test {
}
base::FilePath test_login_db_file_path() const {
- return db_dir_.path().Append(FILE_PATH_LITERAL("login.db"));
+ return db_dir_.GetPath().Append(FILE_PATH_LITERAL("login.db"));
}
password_manager::LoginDatabase* login_db() const {
« no previous file with comments | « no previous file | chrome/browser/password_manager/password_store_proxy_mac_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698