Index: chrome/common/autofill_messages.h |
diff --git a/chrome/common/autofill_messages.h b/chrome/common/autofill_messages.h |
index 39befaa75429535d169665b1748dd929a3757a53..95adf65037ee559396cf9b5c19429f54f60a60c7 100644 |
--- a/chrome/common/autofill_messages.h |
+++ b/chrome/common/autofill_messages.h |
@@ -11,16 +11,16 @@ |
#include "ipc/ipc_message_macros.h" |
#include "ipc/ipc_message_utils.h" |
#include "ui/gfx/rect.h" |
-#include "webkit/glue/form_data.h" |
-#include "webkit/glue/form_data_predictions.h" |
-#include "webkit/glue/form_field.h" |
-#include "webkit/glue/form_field_predictions.h" |
-#include "webkit/glue/password_form.h" |
-#include "webkit/glue/password_form_dom_manager.h" |
+#include "webkit/forms/form_data.h" |
+#include "webkit/forms/form_data_predictions.h" |
+#include "webkit/forms/form_field.h" |
+#include "webkit/forms/form_field_predictions.h" |
+#include "webkit/forms/password_form.h" |
+#include "webkit/forms/password_form_dom_manager.h" |
#define IPC_MESSAGE_START AutofillMsgStart |
-IPC_STRUCT_TRAITS_BEGIN(webkit_glue::FormField) |
+IPC_STRUCT_TRAITS_BEGIN(webkit::forms::FormField) |
IPC_STRUCT_TRAITS_MEMBER(label) |
IPC_STRUCT_TRAITS_MEMBER(name) |
IPC_STRUCT_TRAITS_MEMBER(value) |
@@ -34,7 +34,7 @@ IPC_STRUCT_TRAITS_BEGIN(webkit_glue::FormField) |
IPC_STRUCT_TRAITS_MEMBER(option_contents) |
IPC_STRUCT_TRAITS_END() |
-IPC_STRUCT_TRAITS_BEGIN(webkit_glue::FormFieldPredictions) |
+IPC_STRUCT_TRAITS_BEGIN(webkit::forms::FormFieldPredictions) |
IPC_STRUCT_TRAITS_MEMBER(field) |
IPC_STRUCT_TRAITS_MEMBER(signature) |
IPC_STRUCT_TRAITS_MEMBER(heuristic_type) |
@@ -42,7 +42,7 @@ IPC_STRUCT_TRAITS_BEGIN(webkit_glue::FormFieldPredictions) |
IPC_STRUCT_TRAITS_MEMBER(overall_type) |
IPC_STRUCT_TRAITS_END() |
-IPC_STRUCT_TRAITS_BEGIN(webkit_glue::FormData) |
+IPC_STRUCT_TRAITS_BEGIN(webkit::forms::FormData) |
IPC_STRUCT_TRAITS_MEMBER(name) |
IPC_STRUCT_TRAITS_MEMBER(method) |
IPC_STRUCT_TRAITS_MEMBER(origin) |
@@ -51,14 +51,14 @@ IPC_STRUCT_TRAITS_BEGIN(webkit_glue::FormData) |
IPC_STRUCT_TRAITS_MEMBER(fields) |
IPC_STRUCT_TRAITS_END() |
-IPC_STRUCT_TRAITS_BEGIN(webkit_glue::FormDataPredictions) |
+IPC_STRUCT_TRAITS_BEGIN(webkit::forms::FormDataPredictions) |
IPC_STRUCT_TRAITS_MEMBER(data) |
IPC_STRUCT_TRAITS_MEMBER(signature) |
IPC_STRUCT_TRAITS_MEMBER(experiment_id) |
IPC_STRUCT_TRAITS_MEMBER(fields) |
IPC_STRUCT_TRAITS_END() |
-IPC_STRUCT_TRAITS_BEGIN(webkit_glue::PasswordFormFillData) |
+IPC_STRUCT_TRAITS_BEGIN(webkit::forms::PasswordFormFillData) |
IPC_STRUCT_TRAITS_MEMBER(basic_data) |
IPC_STRUCT_TRAITS_MEMBER(additional_logins) |
IPC_STRUCT_TRAITS_MEMBER(wait_for_username) |
@@ -79,17 +79,17 @@ IPC_MESSAGE_ROUTED5(AutofillMsg_SuggestionsReturned, |
// Autofill form data. |
IPC_MESSAGE_ROUTED2(AutofillMsg_FormDataFilled, |
int /* id of the request message */, |
- webkit_glue::FormData /* form data */) |
+ webkit::forms::FormData /* form data */) |
// Fill a password form and prepare field autocomplete for multiple |
// matching logins. |
IPC_MESSAGE_ROUTED1(AutofillMsg_FillPasswordForm, |
- webkit_glue::PasswordFormFillData) |
+ webkit::forms::PasswordFormFillData) |
// Send the heuristic and server field type predictions to the renderer. |
IPC_MESSAGE_ROUTED1( |
AutofillMsg_FieldTypePredictionsAvailable, |
- std::vector<webkit_glue::FormDataPredictions> /* forms */) |
+ std::vector<webkit::forms::FormDataPredictions> /* forms */) |
// Select an Autofill item when using an external delegate. |
IPC_MESSAGE_ROUTED1(AutofillMsg_SelectAutofillSuggestionAtIndex, |
@@ -100,35 +100,35 @@ IPC_MESSAGE_ROUTED1(AutofillMsg_SelectAutofillSuggestionAtIndex, |
// Notification that forms have been seen that are candidates for |
// filling/submitting by the AutofillManager. |
IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, |
- std::vector<webkit_glue::FormData> /* forms */, |
+ std::vector<webkit::forms::FormData> /* forms */, |
base::TimeTicks /* timestamp */) |
// Notification that password forms have been seen that are candidates for |
// filling/submitting by the password manager. |
IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsFound, |
- std::vector<webkit_glue::PasswordForm> /* forms */) |
+ std::vector<webkit::forms::PasswordForm> /* forms */) |
// Notification that initial layout has occurred and the following password |
// forms are visible on the page (e.g. not set to display:none.) |
IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsVisible, |
- std::vector<webkit_glue::PasswordForm> /* forms */) |
+ std::vector<webkit::forms::PasswordForm> /* forms */) |
// Notification that a form has been submitted. The user hit the button. |
IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormSubmitted, |
- webkit_glue::FormData /* form */, |
+ webkit::forms::FormData /* form */, |
base::TimeTicks /* timestamp */) |
// Notification that a form field's value has changed. |
IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange, |
- webkit_glue::FormData /* the form */, |
- webkit_glue::FormField /* the form field */, |
+ webkit::forms::FormData /* the form */, |
+ webkit::forms::FormField /* the form field */, |
base::TimeTicks /* timestamp */) |
// Queries the browser for Autofill suggestions for a form input field. |
IPC_MESSAGE_ROUTED5(AutofillHostMsg_QueryFormFieldAutofill, |
int /* id of this message */, |
- webkit_glue::FormData /* the form */, |
- webkit_glue::FormField /* the form field */, |
+ webkit::forms::FormData /* the form */, |
+ webkit::forms::FormField /* the form field */, |
gfx::Rect /* input field bounds, window-relative */, |
bool /* display warning if autofill disabled */) |
@@ -140,8 +140,8 @@ IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidShowAutofillSuggestions, |
// profile data. |
IPC_MESSAGE_ROUTED4(AutofillHostMsg_FillAutofillFormData, |
int /* id of this message */, |
- webkit_glue::FormData /* the form */, |
- webkit_glue::FormField /* the form field */, |
+ webkit::forms::FormData /* the form */, |
+ webkit::forms::FormField /* the form field */, |
int /* profile unique ID */) |
// Sent when a form is previewed with Autofill suggestions. |