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

Unified Diff: components/autofill/core/browser/webdata/web_data_service_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/autofill/core/browser/webdata/web_data_service_unittest.cc
diff --git a/components/autofill/core/browser/webdata/web_data_service_unittest.cc b/components/autofill/core/browser/webdata/web_data_service_unittest.cc
index 431c057214af6718c6978a8a40bc1eba5c500583..0a62a262be37c7ba5267faf2924ec388c470670a 100644
--- a/components/autofill/core/browser/webdata/web_data_service_unittest.cc
+++ b/components/autofill/core/browser/webdata/web_data_service_unittest.cc
@@ -101,7 +101,7 @@ class WebDataServiceTest : public testing::Test {
db_thread_.Start();
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
- base::FilePath path = temp_dir_.path().AppendASCII("TestWebDB");
+ base::FilePath path = temp_dir_.GetPath().AppendASCII("TestWebDB");
wdbs_ = new WebDatabaseService(path, base::ThreadTaskRunnerHandle::Get(),
db_thread_.task_runner());

Powered by Google App Engine
This is Rietveld 408576698