| 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 #include <vector> |
| 9 | 9 |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 IPC_ENUM_TRAITS_MAX_VALUE(autofill::WebElementDescriptor::RetrievalMethod, | 39 IPC_ENUM_TRAITS_MAX_VALUE(autofill::WebElementDescriptor::RetrievalMethod, |
| 40 autofill::WebElementDescriptor::NONE) | 40 autofill::WebElementDescriptor::NONE) |
| 41 | 41 |
| 42 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldData) | 42 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldData) |
| 43 IPC_STRUCT_TRAITS_MEMBER(label) | 43 IPC_STRUCT_TRAITS_MEMBER(label) |
| 44 IPC_STRUCT_TRAITS_MEMBER(name) | 44 IPC_STRUCT_TRAITS_MEMBER(name) |
| 45 IPC_STRUCT_TRAITS_MEMBER(value) | 45 IPC_STRUCT_TRAITS_MEMBER(value) |
| 46 IPC_STRUCT_TRAITS_MEMBER(form_control_type) | 46 IPC_STRUCT_TRAITS_MEMBER(form_control_type) |
| 47 IPC_STRUCT_TRAITS_MEMBER(autocomplete_attribute) | 47 IPC_STRUCT_TRAITS_MEMBER(autocomplete_attribute) |
| 48 IPC_STRUCT_TRAITS_MEMBER(role) |
| 48 IPC_STRUCT_TRAITS_MEMBER(max_length) | 49 IPC_STRUCT_TRAITS_MEMBER(max_length) |
| 49 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) | 50 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) |
| 50 IPC_STRUCT_TRAITS_MEMBER(is_checked) | 51 IPC_STRUCT_TRAITS_MEMBER(is_checked) |
| 51 IPC_STRUCT_TRAITS_MEMBER(is_checkable) | 52 IPC_STRUCT_TRAITS_MEMBER(is_checkable) |
| 52 IPC_STRUCT_TRAITS_MEMBER(is_focusable) | 53 IPC_STRUCT_TRAITS_MEMBER(is_focusable) |
| 53 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) | 54 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) |
| 54 IPC_STRUCT_TRAITS_MEMBER(text_direction) | 55 IPC_STRUCT_TRAITS_MEMBER(text_direction) |
| 55 IPC_STRUCT_TRAITS_MEMBER(option_values) | 56 IPC_STRUCT_TRAITS_MEMBER(option_values) |
| 56 IPC_STRUCT_TRAITS_MEMBER(option_contents) | 57 IPC_STRUCT_TRAITS_MEMBER(option_contents) |
| 57 IPC_STRUCT_TRAITS_END() | 58 IPC_STRUCT_TRAITS_END() |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 int /* key */, | 296 int /* key */, |
| 296 base::i18n::TextDirection /*text_direction */, | 297 base::i18n::TextDirection /*text_direction */, |
| 297 base::string16 /* username typed by user */, | 298 base::string16 /* username typed by user */, |
| 298 bool /* show all suggestions */, | 299 bool /* show all suggestions */, |
| 299 gfx::RectF /* input field bounds, window-relative */) | 300 gfx::RectF /* input field bounds, window-relative */) |
| 300 | 301 |
| 301 // Inform browser of data list values for the curent field. | 302 // Inform browser of data list values for the curent field. |
| 302 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 303 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
| 303 std::vector<base::string16> /* values */, | 304 std::vector<base::string16> /* values */, |
| 304 std::vector<base::string16> /* labels */) | 305 std::vector<base::string16> /* labels */) |
| OLD | NEW |