OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 // Tells the renderer that the next form will be filled as a preview. | 104 // Tells the renderer that the next form will be filled as a preview. |
105 IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionPreview) | 105 IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionPreview) |
106 | 106 |
107 // Tells the renderer that the Autofill previewed form should be cleared. | 107 // Tells the renderer that the Autofill previewed form should be cleared. |
108 IPC_MESSAGE_ROUTED0(AutofillMsg_ClearPreviewedForm) | 108 IPC_MESSAGE_ROUTED0(AutofillMsg_ClearPreviewedForm) |
109 | 109 |
110 // Sets the currently selected nodes value. | 110 // Sets the currently selected nodes value. |
111 IPC_MESSAGE_ROUTED1(AutofillMsg_SetNodeText, | 111 IPC_MESSAGE_ROUTED1(AutofillMsg_SetNodeText, |
112 string16) | 112 string16) |
113 | 113 |
| 114 // Tells the renderer that the password field has handled a key press. |
| 115 IPC_MESSAGE_ROUTED1(AutofillMsg_PasswordHandleKeyDown, |
| 116 int /* key_code */) |
| 117 |
| 118 // Tells the renderer that the password field has accept the suggestion. |
| 119 IPC_MESSAGE_ROUTED1(AutofillMsg_PasswordAcceptAutofillSuggestion, |
| 120 string16) |
| 121 |
114 // Autofill messages sent from the renderer to the browser. | 122 // Autofill messages sent from the renderer to the browser. |
115 | 123 |
116 // Notification that forms have been seen that are candidates for | 124 // Notification that forms have been seen that are candidates for |
117 // filling/submitting by the AutofillManager. | 125 // filling/submitting by the AutofillManager. |
118 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, | 126 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, |
119 std::vector<webkit::forms::FormData> /* forms */, | 127 std::vector<webkit::forms::FormData> /* forms */, |
120 base::TimeTicks /* timestamp */) | 128 base::TimeTicks /* timestamp */) |
121 | 129 |
122 // Notification that password forms have been seen that are candidates for | 130 // Notification that password forms have been seen that are candidates for |
123 // filling/submitting by the password manager. | 131 // filling/submitting by the password manager. |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 string16 /* value */) | 182 string16 /* value */) |
175 | 183 |
176 // Instructs the browser to show the Autofill dialog. | 184 // Instructs the browser to show the Autofill dialog. |
177 IPC_MESSAGE_ROUTED0(AutofillHostMsg_ShowAutofillDialog) | 185 IPC_MESSAGE_ROUTED0(AutofillHostMsg_ShowAutofillDialog) |
178 | 186 |
179 // Send when a text field is done editing. | 187 // Send when a text field is done editing. |
180 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) | 188 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) |
181 | 189 |
182 // Instructs the browser to hide the Autofill popup. | 190 // Instructs the browser to hide the Autofill popup. |
183 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HideAutofillPopup) | 191 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HideAutofillPopup) |
| 192 |
| 193 // Instruct the browser that the frame is closing. |
| 194 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FrameClosing, |
| 195 long long /* frame_id */) |
| 196 |
| 197 // Instruct the browse that a password form has been filled. |
| 198 IPC_MESSAGE_ROUTED3(AutofillHostMsg_FillPasswordForm, |
| 199 webkit::forms::FormField, /* the user name field */ |
| 200 webkit::forms::PasswordFormFillData, /*the form fill data */ |
| 201 long long /* frame_id */) |
OLD | NEW |