diff options
Diffstat (limited to 'chrome/browser/tab_contents/tab_contents.h')
-rw-r--r-- | chrome/browser/tab_contents/tab_contents.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/chrome/browser/tab_contents/tab_contents.h b/chrome/browser/tab_contents/tab_contents.h index c496b51..d57f221 100644 --- a/chrome/browser/tab_contents/tab_contents.h +++ b/chrome/browser/tab_contents/tab_contents.h @@ -48,20 +48,24 @@ namespace gfx { class Rect; class Size; } + namespace views { class WindowDelegate; } + namespace base { class WaitableEvent; } + namespace webkit_glue { +class AutofillForm; struct WebApplicationInfo; } + namespace IPC { class Message; } -class AutofillForm; class AutofillManager; class BlockedPopupContainer; class DOMUI; @@ -801,7 +805,7 @@ class TabContents : public PageNavigator, const std::string& json_arguments, IPC::Message* reply_msg); virtual void PasswordFormsSeen(const std::vector<PasswordForm>& forms); - virtual void AutofillFormSubmitted(const AutofillForm& form); + virtual void AutofillFormSubmitted(const webkit_glue::AutofillForm& form); virtual void GetAutofillSuggestions(const std::wstring& field_name, const std::wstring& user_text, int64 node_id, int request_id); virtual void RemoveAutofillEntry(const std::wstring& field_name, |