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

Unified Diff: components/password_manager/core/browser/credential_manager_pending_request_task.h

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/credential_manager_pending_request_task.h
diff --git a/components/password_manager/core/browser/credential_manager_pending_request_task.h b/components/password_manager/core/browser/credential_manager_pending_request_task.h
index 289a820efb4081589bd3af3479d2728e1e674afa..a444a723130cb41dfb817011cf7143cecdd000fa 100644
--- a/components/password_manager/core/browser/credential_manager_pending_request_task.h
+++ b/components/password_manager/core/browser/credential_manager_pending_request_task.h
@@ -12,7 +12,7 @@
#include "base/callback_forward.h"
#include "base/macros.h"
-#include "components/password_manager/core/browser/http_password_migrator.h"
+#include "components/password_manager/core/browser/http_password_store_migrator.h"
#include "components/password_manager/core/browser/password_store.h"
#include "components/password_manager/core/browser/password_store_consumer.h"
#include "url/gurl.h"
@@ -55,7 +55,7 @@ class CredentialManagerPendingRequestTaskDelegate {
// Retrieves credentials from the PasswordStore.
class CredentialManagerPendingRequestTask
: public PasswordStoreConsumer,
- public HttpPasswordMigrator::Consumer {
+ public HttpPasswordStoreMigrator::Consumer {
public:
CredentialManagerPendingRequestTask(
CredentialManagerPendingRequestTaskDelegate* delegate,
@@ -73,7 +73,7 @@ class CredentialManagerPendingRequestTask
std::vector<std::unique_ptr<autofill::PasswordForm>> results) override;
private:
- // HttpPasswordMigrator::Consumer:
+ // HttpPasswordStoreMigrator::Consumer:
void ProcessMigratedForms(
std::vector<std::unique_ptr<autofill::PasswordForm>> forms) override;
@@ -87,7 +87,7 @@ class CredentialManagerPendingRequestTask
const bool include_passwords_;
std::set<std::string> federations_;
- std::unique_ptr<HttpPasswordMigrator> http_migrator_;
+ std::unique_ptr<HttpPasswordStoreMigrator> http_migrator_;
DISALLOW_COPY_AND_ASSIGN(CredentialManagerPendingRequestTask);
};

Powered by Google App Engine
This is Rietveld 408576698