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 accept the suggestion. |
| 115 IPC_MESSAGE_ROUTED1(AutofillMsg_PasswordAcceptAutofillSuggestion, |
| 116 string16) |
| 117 |
114 // Autofill messages sent from the renderer to the browser. | 118 // Autofill messages sent from the renderer to the browser. |
115 | 119 |
116 // Notification that forms have been seen that are candidates for | 120 // Notification that forms have been seen that are candidates for |
117 // filling/submitting by the AutofillManager. | 121 // filling/submitting by the AutofillManager. |
118 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, | 122 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, |
119 std::vector<webkit::forms::FormData> /* forms */, | 123 std::vector<webkit::forms::FormData> /* forms */, |
120 base::TimeTicks /* timestamp */) | 124 base::TimeTicks /* timestamp */) |
121 | 125 |
122 // Notification that password forms have been seen that are candidates for | 126 // Notification that password forms have been seen that are candidates for |
123 // filling/submitting by the password manager. | 127 // filling/submitting by the password manager. |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 string16 /* value */) | 178 string16 /* value */) |
175 | 179 |
176 // Instructs the browser to show the Autofill dialog. | 180 // Instructs the browser to show the Autofill dialog. |
177 IPC_MESSAGE_ROUTED0(AutofillHostMsg_ShowAutofillDialog) | 181 IPC_MESSAGE_ROUTED0(AutofillHostMsg_ShowAutofillDialog) |
178 | 182 |
179 // Send when a text field is done editing. | 183 // Send when a text field is done editing. |
180 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) | 184 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) |
181 | 185 |
182 // Instructs the browser to hide the Autofill popup. | 186 // Instructs the browser to hide the Autofill popup. |
183 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HideAutofillPopup) | 187 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HideAutofillPopup) |
| 188 |
| 189 // Instruct the browser that the frame is closing. |
| 190 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FrameClosing, |
| 191 long long /* frame_id */) |
| 192 |
| 193 // Instruct the browse that a password form has been filled. |
| 194 IPC_MESSAGE_ROUTED3(AutofillHostMsg_FillPasswordForm, |
| 195 webkit::forms::FormField, /* the user name field */ |
| 196 webkit::forms::PasswordFormFillData, /*the form fill data */ |
| 197 long long /* frame_id */) |
OLD | NEW |