| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 IPC_STRUCT_TRAITS_MEMBER(role) | 52 IPC_STRUCT_TRAITS_MEMBER(role) |
| 53 IPC_STRUCT_TRAITS_MEMBER(max_length) | 53 IPC_STRUCT_TRAITS_MEMBER(max_length) |
| 54 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) | 54 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) |
| 55 IPC_STRUCT_TRAITS_MEMBER(check_status) | 55 IPC_STRUCT_TRAITS_MEMBER(check_status) |
| 56 IPC_STRUCT_TRAITS_MEMBER(is_focusable) | 56 IPC_STRUCT_TRAITS_MEMBER(is_focusable) |
| 57 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) | 57 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) |
| 58 IPC_STRUCT_TRAITS_MEMBER(text_direction) | 58 IPC_STRUCT_TRAITS_MEMBER(text_direction) |
| 59 IPC_STRUCT_TRAITS_MEMBER(option_values) | 59 IPC_STRUCT_TRAITS_MEMBER(option_values) |
| 60 IPC_STRUCT_TRAITS_MEMBER(option_contents) | 60 IPC_STRUCT_TRAITS_MEMBER(option_contents) |
| 61 IPC_STRUCT_TRAITS_MEMBER(css_classes) | 61 IPC_STRUCT_TRAITS_MEMBER(css_classes) |
| 62 IPC_STRUCT_TRAITS_MEMBER(properties_mask) |
| 62 IPC_STRUCT_TRAITS_END() | 63 IPC_STRUCT_TRAITS_END() |
| 63 | 64 |
| 64 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldDataPredictions) | 65 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldDataPredictions) |
| 65 IPC_STRUCT_TRAITS_MEMBER(field) | 66 IPC_STRUCT_TRAITS_MEMBER(field) |
| 66 IPC_STRUCT_TRAITS_MEMBER(signature) | 67 IPC_STRUCT_TRAITS_MEMBER(signature) |
| 67 IPC_STRUCT_TRAITS_MEMBER(heuristic_type) | 68 IPC_STRUCT_TRAITS_MEMBER(heuristic_type) |
| 68 IPC_STRUCT_TRAITS_MEMBER(server_type) | 69 IPC_STRUCT_TRAITS_MEMBER(server_type) |
| 69 IPC_STRUCT_TRAITS_MEMBER(overall_type) | 70 IPC_STRUCT_TRAITS_MEMBER(overall_type) |
| 70 IPC_STRUCT_TRAITS_MEMBER(parseable_name) | 71 IPC_STRUCT_TRAITS_MEMBER(parseable_name) |
| 71 IPC_STRUCT_TRAITS_END() | 72 IPC_STRUCT_TRAITS_END() |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 base::i18n::TextDirection /* text_direction */, | 261 base::i18n::TextDirection /* text_direction */, |
| 261 base::string16 /* username typed by user */, | 262 base::string16 /* username typed by user */, |
| 262 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */, | 263 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */, |
| 263 gfx::RectF /* input field bounds, window-relative */) | 264 gfx::RectF /* input field bounds, window-relative */) |
| 264 | 265 |
| 265 // Inform the browser which password form is currently focused, as a response | 266 // Inform the browser which password form is currently focused, as a response |
| 266 // to the |AutofillMsg_FindFocusedPasswordForm| request. If no password form | 267 // to the |AutofillMsg_FindFocusedPasswordForm| request. If no password form |
| 267 // is focused, the response will contain an empty |autofill::PasswordForm|. | 268 // is focused, the response will contain an empty |autofill::PasswordForm|. |
| 268 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FocusedPasswordFormFound, | 269 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FocusedPasswordFormFound, |
| 269 autofill::PasswordForm) | 270 autofill::PasswordForm) |
| OLD | NEW |