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 6d35416e9118e15dd36933b4688af95f28d5ad4d..8b407f392f5cdfd91614e0eb45fb1c76f6dce7a5 100644 |
--- a/chrome/renderer/autofill/password_autofill_manager.h |
+++ b/chrome/renderer/autofill/password_autofill_manager.h |
@@ -9,10 +9,10 @@ |
#include <vector> |
#include "base/memory/weak_ptr.h" |
+#include "chrome/common/password_form_fill_data.h" |
#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/forms/password_form_dom_manager.h" |
namespace WebKit { |
class WebInputElement; |
@@ -54,7 +54,7 @@ class PasswordAutofillManager : public content::RenderViewObserver, |
struct PasswordInfo { |
WebKit::WebInputElement password_field; |
- webkit::forms::PasswordFormFillData fill_data; |
+ PasswordFormFillData fill_data; |
bool backspace_pressed_last; |
PasswordInfo() : backspace_pressed_last(false) {} |
}; |
@@ -74,24 +74,24 @@ class PasswordAutofillManager : public content::RenderViewObserver, |
virtual bool InputElementLostFocus() OVERRIDE; |
// RenderView IPC handlers: |
- void OnFillPasswordForm(const webkit::forms::PasswordFormFillData& form_data, |
+ void OnFillPasswordForm(const PasswordFormFillData& form_data, |
bool disable_popup); |
// 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::forms::PasswordFormFillData& fill_data, |
+ void GetSuggestions(const PasswordFormFillData& fill_data, |
const string16& input, |
std::vector<string16>* suggestions); |
- bool ShowSuggestionPopup(const webkit::forms::PasswordFormFillData& fill_data, |
+ bool ShowSuggestionPopup(const PasswordFormFillData& fill_data, |
const WebKit::WebInputElement& user_input); |
bool FillUserNameAndPassword( |
WebKit::WebInputElement* username_element, |
WebKit::WebInputElement* password_element, |
- const webkit::forms::PasswordFormFillData& fill_data, |
+ const 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::forms::PasswordFormFillData& fill_data); |
+ const 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. |