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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 // Send the heuristic and server field type predictions to the renderer. | 89 // Send the heuristic and server field type predictions to the renderer. |
90 IPC_MESSAGE_ROUTED1( | 90 IPC_MESSAGE_ROUTED1( |
91 AutofillMsg_FieldTypePredictionsAvailable, | 91 AutofillMsg_FieldTypePredictionsAvailable, |
92 std::vector<webkit::forms::FormDataPredictions> /* forms */) | 92 std::vector<webkit::forms::FormDataPredictions> /* forms */) |
93 | 93 |
94 // Select an Autofill item when using an external delegate. | 94 // Select an Autofill item when using an external delegate. |
95 IPC_MESSAGE_ROUTED1(AutofillMsg_SelectAutofillSuggestionAtIndex, | 95 IPC_MESSAGE_ROUTED1(AutofillMsg_SelectAutofillSuggestionAtIndex, |
96 int /* listIndex */) | 96 int /* listIndex */) |
97 | 97 |
| 98 // Tells the renderer that the next form will be filled for real. |
| 99 IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionFill) |
| 100 |
| 101 // Clears the currently displayed Autofill results. |
| 102 IPC_MESSAGE_ROUTED0(AutofillMsg_ClearForm) |
| 103 |
| 104 // Tells the renderer that the next form will be filled as a preview. |
| 105 IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionPreview) |
| 106 |
| 107 // Tells the renderer that the Autofill previewed form should be cleared. |
| 108 IPC_MESSAGE_ROUTED0(AutofillMsg_ClearPreviewedForm) |
| 109 |
| 110 // Sets the currently selected nodes value. |
| 111 IPC_MESSAGE_ROUTED1(AutofillMsg_SetNodeText, |
| 112 string16) |
| 113 |
98 // Autofill messages sent from the renderer to the browser. | 114 // Autofill messages sent from the renderer to the browser. |
99 | 115 |
100 // Notification that forms have been seen that are candidates for | 116 // Notification that forms have been seen that are candidates for |
101 // filling/submitting by the AutofillManager. | 117 // filling/submitting by the AutofillManager. |
102 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, | 118 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, |
103 std::vector<webkit::forms::FormData> /* forms */, | 119 std::vector<webkit::forms::FormData> /* forms */, |
104 base::TimeTicks /* timestamp */) | 120 base::TimeTicks /* timestamp */) |
105 | 121 |
106 // Notification that password forms have been seen that are candidates for | 122 // Notification that password forms have been seen that are candidates for |
107 // filling/submitting by the password manager. | 123 // filling/submitting by the password manager. |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 string16 /* value */) | 174 string16 /* value */) |
159 | 175 |
160 // Instructs the browser to show the Autofill dialog. | 176 // Instructs the browser to show the Autofill dialog. |
161 IPC_MESSAGE_ROUTED0(AutofillHostMsg_ShowAutofillDialog) | 177 IPC_MESSAGE_ROUTED0(AutofillHostMsg_ShowAutofillDialog) |
162 | 178 |
163 // Send when a text field is done editing. | 179 // Send when a text field is done editing. |
164 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) | 180 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) |
165 | 181 |
166 // Instructs the browser to hide the Autofill popup. | 182 // Instructs the browser to hide the Autofill popup. |
167 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HideAutofillPopup) | 183 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HideAutofillPopup) |
OLD | NEW |