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

Unified Diff: chrome/browser/password_manager/password_store_win_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_win_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_win_unittest.cc b/chrome/browser/password_manager/password_store_win_unittest.cc
index 3367103fa46edb1bf2c6f9eea5ad923e2df36b46..8e39222b0f996de95bda32c29296c80e13ba96c2 100644
--- a/chrome/browser/password_manager/password_store_win_unittest.cc
+++ b/chrome/browser/password_manager/password_store_win_unittest.cc
@@ -129,7 +129,7 @@ class PasswordStoreWinTest : public testing::Test {
profile_.reset(new TestingProfile());
- base::FilePath path = temp_dir_.path().AppendASCII("web_data_test");
+ base::FilePath path = temp_dir_.GetPath().AppendASCII("web_data_test");
wdbs_ = new WebDatabaseService(
path, BrowserThread::GetTaskRunnerForThread(BrowserThread::UI),
BrowserThread::GetTaskRunnerForThread(BrowserThread::DB));
@@ -166,7 +166,7 @@ class PasswordStoreWinTest : public testing::Test {
}
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"));
}
PasswordStoreWin* CreatePasswordStore() {

Powered by Google App Engine
This is Rietveld 408576698