Index: chrome/browser/autofill/autofill_manager.h |
diff --git a/chrome/browser/autofill/autofill_manager.h b/chrome/browser/autofill/autofill_manager.h |
index f372819c80fa7aa2881564d4eda71610af4e8cdf..332228b8e939a3c849020cc2f6214738c539a4f1 100644 |
--- a/chrome/browser/autofill/autofill_manager.h |
+++ b/chrome/browser/autofill/autofill_manager.h |
@@ -51,6 +51,7 @@ namespace webkit { |
namespace forms { |
struct FormData; |
struct FormField; |
+struct PasswordFormFillData; |
} |
} |
@@ -165,6 +166,11 @@ class AutofillManager : public content::WebContentsObserver, |
bool display_warning); |
void OnDidEndTextFieldEditing(); |
void OnHideAutofillPopup(); |
+ void OnFrameClosing(int frame_id); |
Ilya Sherman
2012/03/08 23:22:14
nit: int -> long long?
csharp
2012/03/09 16:20:19
Removed.
|
+ void OnFillPasswordForm( |
+ const webkit::forms::FormField& form, |
+ const webkit::forms::PasswordFormFillData fill_data, |
+ int frame_id); |
Ilya Sherman
2012/03/08 23:22:14
nit: int -> long long?
csharp
2012/03/09 16:20:19
Removed
|
// Fills |host| with the RenderViewHost for this tab. |
// Returns false if Autofill is disabled or if the host is unavailable. |