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

Unified Diff: components/autofill/core/browser/autofill_external_delegate.h

Issue 184103016: Autofill: Refactoring to support fetching password after a username is selected (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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/autofill_external_delegate.h
diff --git a/components/autofill/core/browser/autofill_external_delegate.h b/components/autofill/core/browser/autofill_external_delegate.h
index e399eb580044e3ab81d2cc31e9ee4a1ba6be3c51..d27cd3f7bfb4919d9cfb51225c1bc88600f5d642 100644
--- a/components/autofill/core/browser/autofill_external_delegate.h
+++ b/components/autofill/core/browser/autofill_external_delegate.h
@@ -37,7 +37,8 @@ class AutofillExternalDelegate
// Creates an AutofillExternalDelegate for the specified AutofillManager and
// AutofillDriver.
AutofillExternalDelegate(AutofillManager* autofill_manager,
- AutofillDriver* autofill_driver);
+ AutofillDriver* autofill_driver,
+ PasswordAutofillManager* password_autofill_manager);
virtual ~AutofillExternalDelegate();
// AutofillPopupDelegate implementation.
@@ -134,7 +135,7 @@ class AutofillExternalDelegate
AutofillDriver* autofill_driver_; // weak
// Password Autofill manager, handles all password-related Autofilling.
- PasswordAutofillManager password_autofill_manager_;
+ scoped_ptr<PasswordAutofillManager> password_autofill_manager_;
// The ID of the last request sent for form field Autofill. Used to ignore
// out of date responses.

Powered by Google App Engine
This is Rietveld 408576698