| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include <vector> |
| 8 | 9 |
| 10 #include "base/strings/string16.h" |
| 9 #include "base/time/time.h" | 11 #include "base/time/time.h" |
| 10 #include "components/autofill/content/common/autofill_param_traits_macros.h" | 12 #include "components/autofill/content/common/autofill_param_traits_macros.h" |
| 11 #include "components/autofill/core/common/form_data.h" | 13 #include "components/autofill/core/common/form_data.h" |
| 12 #include "components/autofill/core/common/form_data_predictions.h" | 14 #include "components/autofill/core/common/form_data_predictions.h" |
| 13 #include "components/autofill/core/common/form_field_data.h" | 15 #include "components/autofill/core/common/form_field_data.h" |
| 14 #include "components/autofill/core/common/form_field_data_predictions.h" | 16 #include "components/autofill/core/common/form_field_data_predictions.h" |
| 15 #include "components/autofill/core/common/forms_seen_state.h" | 17 #include "components/autofill/core/common/forms_seen_state.h" |
| 16 #include "components/autofill/core/common/password_form.h" | 18 #include "components/autofill/core/common/password_form.h" |
| 17 #include "components/autofill/core/common/password_form_fill_data.h" | 19 #include "components/autofill/core/common/password_form_fill_data.h" |
| 18 #include "components/autofill/core/common/web_element_descriptor.h" | 20 #include "components/autofill/core/common/web_element_descriptor.h" |
| 19 #include "content/public/common/common_param_traits.h" | 21 #include "content/public/common/common_param_traits.h" |
| 20 #include "content/public/common/common_param_traits_macros.h" | 22 #include "content/public/common/common_param_traits_macros.h" |
| 21 #include "ipc/ipc_message_macros.h" | 23 #include "ipc/ipc_message_macros.h" |
| 22 #include "ipc/ipc_message_utils.h" | 24 #include "ipc/ipc_message_utils.h" |
| 23 #include "third_party/WebKit/public/web/WebFormElement.h" | 25 #include "third_party/WebKit/public/web/WebFormElement.h" |
| 24 #include "ui/gfx/rect.h" | 26 #include "ui/gfx/rect.h" |
| 27 #include "url/gurl.h" |
| 25 | 28 |
| 26 #define IPC_MESSAGE_START AutofillMsgStart | 29 #define IPC_MESSAGE_START AutofillMsgStart |
| 27 | 30 |
| 28 IPC_ENUM_TRAITS_MAX_VALUE(autofill::FormsSeenState, | 31 IPC_ENUM_TRAITS_MAX_VALUE(autofill::FormsSeenState, |
| 29 autofill::FORMS_SEEN_STATE_NUM_STATES - 1) | 32 autofill::FORMS_SEEN_STATE_NUM_STATES - 1) |
| 30 IPC_ENUM_TRAITS_MAX_VALUE(base::i18n::TextDirection, | 33 IPC_ENUM_TRAITS_MAX_VALUE(base::i18n::TextDirection, |
| 31 base::i18n::TEXT_DIRECTION_NUM_DIRECTIONS - 1) | 34 base::i18n::TEXT_DIRECTION_NUM_DIRECTIONS - 1) |
| 32 | 35 |
| 33 IPC_STRUCT_TRAITS_BEGIN(autofill::WebElementDescriptor) | 36 IPC_STRUCT_TRAITS_BEGIN(autofill::WebElementDescriptor) |
| 34 IPC_STRUCT_TRAITS_MEMBER(descriptor) | 37 IPC_STRUCT_TRAITS_MEMBER(descriptor) |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, | 257 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, |
| 255 autofill::FormFieldData /* the form field */, | 258 autofill::FormFieldData /* the form field */, |
| 256 gfx::RectF /* input field bounds, window-relative */, | 259 gfx::RectF /* input field bounds, window-relative */, |
| 257 std::vector<base::string16> /* suggestions */, | 260 std::vector<base::string16> /* suggestions */, |
| 258 std::vector<base::string16> /* realms */) | 261 std::vector<base::string16> /* realms */) |
| 259 | 262 |
| 260 // Inform browser of data list values for the curent field. | 263 // Inform browser of data list values for the curent field. |
| 261 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 264 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
| 262 std::vector<base::string16> /* values */, | 265 std::vector<base::string16> /* values */, |
| 263 std::vector<base::string16> /* labels */) | 266 std::vector<base::string16> /* labels */) |
| OLD | NEW |