Index: components/password_manager/core/browser/password_manager_driver.h |
diff --git a/components/password_manager/core/browser/password_manager_driver.h b/components/password_manager/core/browser/password_manager_driver.h |
index 74e344430ff2b2d87aae5aa2e4834187ef73d2a8..0abb5882f2aadfe8ebfd4a8e67750bf51b30e12e 100644 |
--- a/components/password_manager/core/browser/password_manager_driver.h |
+++ b/components/password_manager/core/browser/password_manager_driver.h |
@@ -14,6 +14,7 @@ |
namespace autofill { |
class AutofillManager; |
struct FormData; |
+struct FormDataPredictions; |
struct PasswordForm; |
struct PasswordFormFillData; |
} // namespace autofill |
@@ -44,6 +45,10 @@ class PasswordManagerDriver |
virtual void AccountCreationFormsFound( |
const std::vector<autofill::FormData>& forms) = 0; |
+ // Notifies the driver that account creation |forms| were found. |
+ virtual void AutofillDataReceived( |
vabr (Chromium)
2015/03/23 16:48:23
This seems non-essential, i.e., if this method is
dvadym
2015/03/23 17:20:44
Thanks, it makes sense.
|
+ const std::vector<autofill::FormDataPredictions>& forms) = 0; |
+ |
// Notifies the driver that the user has accepted a generated password. |
virtual void GeneratedPasswordAccepted(const base::string16& password) = 0; |