| Index: chrome/renderer/autofill/password_autofill_manager.h
|
| diff --git a/chrome/renderer/autofill/password_autofill_manager.h b/chrome/renderer/autofill/password_autofill_manager.h
|
| index cd4cdd83a3e311d7ebb5e0de1d1161554710f104..254571a89d06645d7f3637a39e23d908999333c4 100644
|
| --- a/chrome/renderer/autofill/password_autofill_manager.h
|
| +++ b/chrome/renderer/autofill/password_autofill_manager.h
|
| @@ -13,7 +13,7 @@
|
| #include "chrome/renderer/page_click_listener.h"
|
| #include "content/public/renderer/render_view_observer.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h"
|
| -#include "webkit/glue/password_form_dom_manager.h"
|
| +#include "webkit/forms/password_form_dom_manager.h"
|
|
|
| namespace WebKit {
|
| class WebInputElement;
|
| @@ -55,7 +55,7 @@ class PasswordAutofillManager : public content::RenderViewObserver,
|
|
|
| struct PasswordInfo {
|
| WebKit::WebInputElement password_field;
|
| - webkit_glue::PasswordFormFillData fill_data;
|
| + webkit::forms::PasswordFormFillData fill_data;
|
| bool backspace_pressed_last;
|
| PasswordInfo() : backspace_pressed_last(false) {}
|
| };
|
| @@ -75,23 +75,23 @@ class PasswordAutofillManager : public content::RenderViewObserver,
|
| virtual bool InputElementLostFocus() OVERRIDE;
|
|
|
| // RenderView IPC handlers:
|
| - void OnFillPasswordForm(const webkit_glue::PasswordFormFillData& form_data);
|
| + void OnFillPasswordForm(const webkit::forms::PasswordFormFillData& form_data);
|
|
|
| // Scans the given frame for password forms and sends them up to the browser.
|
| // If |only_visible| is true, only forms visible in the layout are sent.
|
| void SendPasswordForms(WebKit::WebFrame* frame, bool only_visible);
|
|
|
| - void GetSuggestions(const webkit_glue::PasswordFormFillData& fill_data,
|
| + void GetSuggestions(const webkit::forms::PasswordFormFillData& fill_data,
|
| const string16& input,
|
| std::vector<string16>* suggestions);
|
|
|
| - bool ShowSuggestionPopup(const webkit_glue::PasswordFormFillData& fill_data,
|
| + bool ShowSuggestionPopup(const webkit::forms::PasswordFormFillData& fill_data,
|
| const WebKit::WebInputElement& user_input);
|
|
|
| bool FillUserNameAndPassword(
|
| WebKit::WebInputElement* username_element,
|
| WebKit::WebInputElement* password_element,
|
| - const webkit_glue::PasswordFormFillData& fill_data,
|
| + const webkit::forms::PasswordFormFillData& fill_data,
|
| bool exact_username_match,
|
| bool set_selection);
|
|
|
| @@ -100,7 +100,7 @@ class PasswordAutofillManager : public content::RenderViewObserver,
|
| void PerformInlineAutocomplete(
|
| const WebKit::WebInputElement& username,
|
| const WebKit::WebInputElement& password,
|
| - const webkit_glue::PasswordFormFillData& fill_data);
|
| + const webkit::forms::PasswordFormFillData& fill_data);
|
|
|
| // Invoked when the passed frame is closing. Gives us a chance to clear any
|
| // reference we may have to elements in that frame.
|
|
|