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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 | 193 |
194 // Send when a text field is done editing. | 194 // Send when a text field is done editing. |
195 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) | 195 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) |
196 | 196 |
197 // Instructs the browser to hide the Autofill popup. | 197 // Instructs the browser to hide the Autofill popup. |
198 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HideAutofillPopup) | 198 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HideAutofillPopup) |
199 | 199 |
200 // Instructs the browser to show the password generation bubble at the | 200 // Instructs the browser to show the password generation bubble at the |
201 // specified location. This location should be specified in the renderers | 201 // specified location. This location should be specified in the renderers |
202 // coordinate system. Form is the form associated with the password field. | 202 // coordinate system. Form is the form associated with the password field. |
203 IPC_MESSAGE_ROUTED2(AutofillHostMsg_ShowPasswordGenerationPopup, | 203 IPC_MESSAGE_ROUTED3(AutofillHostMsg_ShowPasswordGenerationPopup, |
204 gfx::Rect /* source location */, | 204 gfx::Rect /* source location */, |
| 205 int /* max length of the password */, |
205 webkit::forms::PasswordForm) | 206 webkit::forms::PasswordForm) |
206 | 207 |
207 // Instruct the browser that a password mapping has been found for a field. | 208 // Instruct the browser that a password mapping has been found for a field. |
208 IPC_MESSAGE_ROUTED2(AutofillHostMsg_AddPasswordFormMapping, | 209 IPC_MESSAGE_ROUTED2(AutofillHostMsg_AddPasswordFormMapping, |
209 webkit::forms::FormField, /* the user name field */ | 210 webkit::forms::FormField, /* the user name field */ |
210 webkit::forms::PasswordFormFillData /* password pairings */) | 211 webkit::forms::PasswordFormFillData /* password pairings */) |
211 | 212 |
212 // Instruct the browser to show a popup with the following suggestions from the | 213 // Instruct the browser to show a popup with the following suggestions from the |
213 // password manager. | 214 // password manager. |
214 IPC_MESSAGE_ROUTED3(AutofillHostMsg_ShowPasswordSuggestions, | 215 IPC_MESSAGE_ROUTED3(AutofillHostMsg_ShowPasswordSuggestions, |
215 webkit::forms::FormField /* the form field */, | 216 webkit::forms::FormField /* the form field */, |
216 gfx::Rect /* input field bounds, window-relative */, | 217 gfx::Rect /* input field bounds, window-relative */, |
217 std::vector<string16> /* suggestions */) | 218 std::vector<string16> /* suggestions */) |
OLD | NEW |