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

Unified Diff: components/password_manager/core/browser/password_store_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/password_store_unittest.cc
diff --git a/components/password_manager/core/browser/password_store_unittest.cc b/components/password_manager/core/browser/password_store_unittest.cc
index b628a7bb95d5a9faab3d7bf34616bb43bf9953be..daa27d4c31b0f896ec0e8efc664e506eb90b2799 100644
--- a/components/password_manager/core/browser/password_store_unittest.cc
+++ b/components/password_manager/core/browser/password_store_unittest.cc
@@ -91,7 +91,7 @@ class PasswordStoreTest : public testing::Test {
void TearDown() override { ASSERT_TRUE(temp_dir_.Delete()); }
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"));
}
base::MessageLoopForUI message_loop_;

Powered by Google App Engine
This is Rietveld 408576698