OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "content/public/common/webkit_param_traits.h" | 10 #include "content/public/common/webkit_param_traits.h" |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 // Fill a password form and prepare field autocomplete for multiple | 81 // Fill a password form and prepare field autocomplete for multiple |
82 // matching logins. | 82 // matching logins. |
83 IPC_MESSAGE_ROUTED1(AutofillMsg_FillPasswordForm, | 83 IPC_MESSAGE_ROUTED1(AutofillMsg_FillPasswordForm, |
84 webkit_glue::PasswordFormFillData) | 84 webkit_glue::PasswordFormFillData) |
85 | 85 |
86 // Send the heuristic and server field type predictions to the renderer. | 86 // Send the heuristic and server field type predictions to the renderer. |
87 IPC_MESSAGE_ROUTED1( | 87 IPC_MESSAGE_ROUTED1( |
88 AutofillMsg_FieldTypePredictionsAvailable, | 88 AutofillMsg_FieldTypePredictionsAvailable, |
89 std::vector<webkit_glue::FormDataPredictions> /* forms */) | 89 std::vector<webkit_glue::FormDataPredictions> /* forms */) |
90 | 90 |
| 91 // Select an Autofill item when using an external delegate. |
| 92 IPC_MESSAGE_ROUTED1(AutofillMsg_SelectAutofillSuggestionAtIndex, |
| 93 int /* listIndex */) |
| 94 |
91 // Autofill messages sent from the renderer to the browser. | 95 // Autofill messages sent from the renderer to the browser. |
92 | 96 |
93 // Notification that forms have been seen that are candidates for | 97 // Notification that forms have been seen that are candidates for |
94 // filling/submitting by the AutofillManager. | 98 // filling/submitting by the AutofillManager. |
95 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, | 99 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, |
96 std::vector<webkit_glue::FormData> /* forms */, | 100 std::vector<webkit_glue::FormData> /* forms */, |
97 base::TimeTicks /* timestamp */) | 101 base::TimeTicks /* timestamp */) |
98 | 102 |
99 // Notification that password forms have been seen that are candidates for | 103 // Notification that password forms have been seen that are candidates for |
100 // filling/submitting by the password manager. | 104 // filling/submitting by the password manager. |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 // Instructs the browser to remove the specified Autocomplete entry from the | 149 // Instructs the browser to remove the specified Autocomplete entry from the |
146 // database. | 150 // database. |
147 IPC_MESSAGE_ROUTED2(AutofillHostMsg_RemoveAutocompleteEntry, | 151 IPC_MESSAGE_ROUTED2(AutofillHostMsg_RemoveAutocompleteEntry, |
148 string16 /* field name */, | 152 string16 /* field name */, |
149 string16 /* value */) | 153 string16 /* value */) |
150 | 154 |
151 // Instructs the browser to show the Autofill dialog. | 155 // Instructs the browser to show the Autofill dialog. |
152 IPC_MESSAGE_ROUTED0(AutofillHostMsg_ShowAutofillDialog) | 156 IPC_MESSAGE_ROUTED0(AutofillHostMsg_ShowAutofillDialog) |
153 | 157 |
154 | 158 |
OLD | NEW |