| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Multiply-included message file, hence no include guard. | 5 // Multiply-included message file, hence no include guard. |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/time.h" | 9 #include "base/time.h" |
| 10 #include "components/autofill/common/autocheckout_status.h" | 10 #include "components/autofill/common/autocheckout_status.h" |
| 11 #include "components/autofill/common/autofill_export.h" |
| 11 #include "components/autofill/common/form_data.h" | 12 #include "components/autofill/common/form_data.h" |
| 12 #include "components/autofill/common/form_data_predictions.h" | 13 #include "components/autofill/common/form_data_predictions.h" |
| 13 #include "components/autofill/common/form_field_data.h" | 14 #include "components/autofill/common/form_field_data.h" |
| 14 #include "components/autofill/common/form_field_data_predictions.h" | 15 #include "components/autofill/common/form_field_data_predictions.h" |
| 15 #include "components/autofill/common/password_form_fill_data.h" | 16 #include "components/autofill/common/password_form_fill_data.h" |
| 16 #include "components/autofill/common/web_element_descriptor.h" | 17 #include "components/autofill/common/web_element_descriptor.h" |
| 17 #include "content/public/common/common_param_traits.h" | 18 #include "content/public/common/common_param_traits.h" |
| 18 #include "content/public/common/common_param_traits_macros.h" | 19 #include "content/public/common/common_param_traits_macros.h" |
| 19 #include "content/public/common/password_form.h" | 20 #include "content/public/common/password_form.h" |
| 20 #include "content/public/common/ssl_status.h" | 21 #include "content/public/common/ssl_status.h" |
| 21 #include "googleurl/src/gurl.h" | 22 #include "googleurl/src/gurl.h" |
| 22 #include "ipc/ipc_message_macros.h" | 23 #include "ipc/ipc_message_macros.h" |
| 23 #include "ipc/ipc_message_utils.h" | 24 #include "ipc/ipc_message_utils.h" |
| 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" | 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" |
| 25 #include "ui/gfx/rect.h" | 26 #include "ui/gfx/rect.h" |
| 26 | 27 |
| 28 #undef IPC_MESSAGE_EXPORT |
| 29 #define IPC_MESSAGE_EXPORT AUTOFILL_EXPORT |
| 30 |
| 27 #define IPC_MESSAGE_START AutofillMsgStart | 31 #define IPC_MESSAGE_START AutofillMsgStart |
| 28 | 32 |
| 29 IPC_ENUM_TRAITS(autofill::AutocheckoutStatus) | 33 IPC_ENUM_TRAITS(autofill::AutocheckoutStatus) |
| 30 | 34 |
| 31 IPC_STRUCT_TRAITS_BEGIN(autofill::WebElementDescriptor) | 35 IPC_STRUCT_TRAITS_BEGIN(autofill::WebElementDescriptor) |
| 32 IPC_STRUCT_TRAITS_MEMBER(descriptor) | 36 IPC_STRUCT_TRAITS_MEMBER(descriptor) |
| 33 IPC_STRUCT_TRAITS_MEMBER(retrieval_method) | 37 IPC_STRUCT_TRAITS_MEMBER(retrieval_method) |
| 34 IPC_STRUCT_TRAITS_END() | 38 IPC_STRUCT_TRAITS_END() |
| 35 | 39 |
| 36 IPC_ENUM_TRAITS(autofill::WebElementDescriptor::RetrievalMethod) | 40 IPC_ENUM_TRAITS(autofill::WebElementDescriptor::RetrievalMethod) |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 autofill::FormFieldData /* the form field */, | 284 autofill::FormFieldData /* the form field */, |
| 281 gfx::RectF /* input field bounds, window-relative */, | 285 gfx::RectF /* input field bounds, window-relative */, |
| 282 std::vector<base::string16> /* suggestions */) | 286 std::vector<base::string16> /* suggestions */) |
| 283 | 287 |
| 284 // Inform browser of data list values for the curent field. | 288 // Inform browser of data list values for the curent field. |
| 285 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, | 289 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, |
| 286 std::vector<base::string16> /* values */, | 290 std::vector<base::string16> /* values */, |
| 287 std::vector<base::string16> /* labels */, | 291 std::vector<base::string16> /* labels */, |
| 288 std::vector<base::string16> /* icons */, | 292 std::vector<base::string16> /* icons */, |
| 289 std::vector<int> /* unique ids */) | 293 std::vector<int> /* unique ids */) |
| OLD | NEW |