| 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 | 8 |
| 9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
| 10 #include "components/autofill/core/common/autofill_param_traits_macros.h" | 10 #include "components/autofill/core/common/autofill_param_traits_macros.h" |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 IPC_STRUCT_TRAITS_END() | 56 IPC_STRUCT_TRAITS_END() |
| 57 | 57 |
| 58 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldDataPredictions) | 58 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldDataPredictions) |
| 59 IPC_STRUCT_TRAITS_MEMBER(field) | 59 IPC_STRUCT_TRAITS_MEMBER(field) |
| 60 IPC_STRUCT_TRAITS_MEMBER(signature) | 60 IPC_STRUCT_TRAITS_MEMBER(signature) |
| 61 IPC_STRUCT_TRAITS_MEMBER(heuristic_type) | 61 IPC_STRUCT_TRAITS_MEMBER(heuristic_type) |
| 62 IPC_STRUCT_TRAITS_MEMBER(server_type) | 62 IPC_STRUCT_TRAITS_MEMBER(server_type) |
| 63 IPC_STRUCT_TRAITS_MEMBER(overall_type) | 63 IPC_STRUCT_TRAITS_MEMBER(overall_type) |
| 64 IPC_STRUCT_TRAITS_END() | 64 IPC_STRUCT_TRAITS_END() |
| 65 | 65 |
| 66 IPC_STRUCT_TRAITS_BEGIN(autofill::FormData) | |
| 67 IPC_STRUCT_TRAITS_MEMBER(name) | |
| 68 IPC_STRUCT_TRAITS_MEMBER(method) | |
| 69 IPC_STRUCT_TRAITS_MEMBER(origin) | |
| 70 IPC_STRUCT_TRAITS_MEMBER(action) | |
| 71 IPC_STRUCT_TRAITS_MEMBER(user_submitted) | |
| 72 IPC_STRUCT_TRAITS_MEMBER(fields) | |
| 73 IPC_STRUCT_TRAITS_END() | |
| 74 | |
| 75 IPC_STRUCT_TRAITS_BEGIN(autofill::FormDataPredictions) | 66 IPC_STRUCT_TRAITS_BEGIN(autofill::FormDataPredictions) |
| 76 IPC_STRUCT_TRAITS_MEMBER(data) | 67 IPC_STRUCT_TRAITS_MEMBER(data) |
| 77 IPC_STRUCT_TRAITS_MEMBER(signature) | 68 IPC_STRUCT_TRAITS_MEMBER(signature) |
| 78 IPC_STRUCT_TRAITS_MEMBER(experiment_id) | 69 IPC_STRUCT_TRAITS_MEMBER(experiment_id) |
| 79 IPC_STRUCT_TRAITS_MEMBER(fields) | 70 IPC_STRUCT_TRAITS_MEMBER(fields) |
| 80 IPC_STRUCT_TRAITS_END() | 71 IPC_STRUCT_TRAITS_END() |
| 81 | 72 |
| 82 IPC_STRUCT_TRAITS_BEGIN(autofill::UsernamesCollectionKey) | 73 IPC_STRUCT_TRAITS_BEGIN(autofill::UsernamesCollectionKey) |
| 83 IPC_STRUCT_TRAITS_MEMBER(username) | 74 IPC_STRUCT_TRAITS_MEMBER(username) |
| 84 IPC_STRUCT_TRAITS_MEMBER(password) | 75 IPC_STRUCT_TRAITS_MEMBER(password) |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, | 257 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, |
| 267 autofill::FormFieldData /* the form field */, | 258 autofill::FormFieldData /* the form field */, |
| 268 gfx::RectF /* input field bounds, window-relative */, | 259 gfx::RectF /* input field bounds, window-relative */, |
| 269 std::vector<base::string16> /* suggestions */, | 260 std::vector<base::string16> /* suggestions */, |
| 270 std::vector<base::string16> /* realms */) | 261 std::vector<base::string16> /* realms */) |
| 271 | 262 |
| 272 // Inform browser of data list values for the curent field. | 263 // Inform browser of data list values for the curent field. |
| 273 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 264 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
| 274 std::vector<base::string16> /* values */, | 265 std::vector<base::string16> /* values */, |
| 275 std::vector<base::string16> /* labels */) | 266 std::vector<base::string16> /* labels */) |
| OLD | NEW |