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

Unified Diff: components/password_manager/core/browser/form_fetcher_impl.cc

Issue 2748933005: Remove Obsolete HTTP SiteStatistics From PasswordStore during Migration (Closed)
Patch Set: Capture explicitly Created 3 years, 9 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/form_fetcher_impl.cc
diff --git a/components/password_manager/core/browser/form_fetcher_impl.cc b/components/password_manager/core/browser/form_fetcher_impl.cc
index c4f922c5a11e02c5924dea796a3d3185b700717d..b73501a2c74b3a2ad5bd48cdbc8f0e982d3a32e7 100644
--- a/components/password_manager/core/browser/form_fetcher_impl.cc
+++ b/components/password_manager/core/browser/form_fetcher_impl.cc
@@ -128,8 +128,8 @@ void FormFetcherImpl::OnGetPasswordStoreResults(
if (should_migrate_http_passwords_ && results.empty() &&
form_digest_.origin.SchemeIs(url::kHttpsScheme)) {
- http_migrator_ = base::MakeUnique<HttpPasswordMigrator>(form_digest_.origin,
- client_, this);
+ http_migrator_ = base::MakeUnique<HttpPasswordStoreMigrator>(
+ form_digest_.origin, client_, this);
return;
}

Powered by Google App Engine
This is Rietveld 408576698