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

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

Issue 306053008: Rename AutofillManagerDelegate to AutofillClient. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 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_autofill_manager.h
diff --git a/components/password_manager/core/browser/password_autofill_manager.h b/components/password_manager/core/browser/password_autofill_manager.h
index 88ab80144198afc48436b6fff92a74fa1c05f940..8ab93696771200e288f9b4038fef834156ce294e 100644
--- a/components/password_manager/core/browser/password_autofill_manager.h
+++ b/components/password_manager/core/browser/password_autofill_manager.h
@@ -8,7 +8,7 @@
#include <map>
#include "base/gtest_prod_util.h"
-#include "components/autofill/core/browser/autofill_manager_delegate.h"
+#include "components/autofill/core/browser/autofill_client.h"
#include "components/autofill/core/browser/autofill_popup_delegate.h"
#include "components/autofill/core/common/password_form_fill_data.h"
@@ -23,9 +23,8 @@ class PasswordManagerClient;
// This class is responsible for filling password forms.
class PasswordAutofillManager : public autofill::AutofillPopupDelegate {
public:
- PasswordAutofillManager(
- PasswordManagerClient* password_manager_client,
- autofill::AutofillManagerDelegate* autofill_manager_delegate);
+ PasswordAutofillManager(PasswordManagerClient* password_manager_client,
+ autofill::AutofillClient* autofill_client);
virtual ~PasswordAutofillManager();
// AutofillPopupDelegate implementation.
@@ -95,7 +94,7 @@ class PasswordAutofillManager : public autofill::AutofillPopupDelegate {
// Provides embedder-level operations on passwords. Must outlive |this|.
PasswordManagerClient* const password_manager_client_; // weak
- autofill::AutofillManagerDelegate* const autofill_manager_delegate_; // weak
+ autofill::AutofillClient* const autofill_client_; // weak
// The form field on which the autofill popup is shown.
autofill::FormFieldData form_field_;

Powered by Google App Engine
This is Rietveld 408576698