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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 | 111 |
112 // Sets the currently selected nodes value. | 112 // Sets the currently selected nodes value. |
113 IPC_MESSAGE_ROUTED1(AutofillMsg_SetNodeText, | 113 IPC_MESSAGE_ROUTED1(AutofillMsg_SetNodeText, |
114 string16) | 114 string16) |
115 | 115 |
116 // Tells the renderer to populate the correct password fields with this | 116 // Tells the renderer to populate the correct password fields with this |
117 // generated password. | 117 // generated password. |
118 IPC_MESSAGE_ROUTED1(AutofillMsg_GeneratedPasswordAccepted, | 118 IPC_MESSAGE_ROUTED1(AutofillMsg_GeneratedPasswordAccepted, |
119 string16 /* generated_password */) | 119 string16 /* generated_password */) |
120 | 120 |
121 // Tells the renderer if password generation should be enabled. | 121 // Tells the renderer whether password generation is enabled. |
122 IPC_MESSAGE_ROUTED1(AutofillMsg_PasswordGenerationEnabled, | 122 IPC_MESSAGE_ROUTED1(AutofillMsg_PasswordGenerationEnabled, |
123 bool /* is_enabled */) | 123 bool /* is_enabled */) |
124 | 124 |
125 // Tells the renderer that the password field has accept the suggestion. | 125 // Tells the renderer that the password field has accept the suggestion. |
126 IPC_MESSAGE_ROUTED1(AutofillMsg_AcceptPasswordAutofillSuggestion, | 126 IPC_MESSAGE_ROUTED1(AutofillMsg_AcceptPasswordAutofillSuggestion, |
127 string16 /* username value*/) | 127 string16 /* username value*/) |
128 | 128 |
129 // Autofill messages sent from the renderer to the browser. | 129 // Autofill messages sent from the renderer to the browser. |
130 | 130 |
131 // Notification that forms have been seen that are candidates for | 131 // Notification that forms have been seen that are candidates for |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 IPC_MESSAGE_ROUTED2(AutofillHostMsg_AddPasswordFormMapping, | 207 IPC_MESSAGE_ROUTED2(AutofillHostMsg_AddPasswordFormMapping, |
208 webkit::forms::FormField, /* the user name field */ | 208 webkit::forms::FormField, /* the user name field */ |
209 webkit::forms::PasswordFormFillData /* password pairings */) | 209 webkit::forms::PasswordFormFillData /* password pairings */) |
210 | 210 |
211 // Instruct the browser to show a popup with the following suggestions from the | 211 // Instruct the browser to show a popup with the following suggestions from the |
212 // password manager. | 212 // password manager. |
213 IPC_MESSAGE_ROUTED3(AutofillHostMsg_ShowPasswordSuggestions, | 213 IPC_MESSAGE_ROUTED3(AutofillHostMsg_ShowPasswordSuggestions, |
214 webkit::forms::FormField /* the form field */, | 214 webkit::forms::FormField /* the form field */, |
215 gfx::Rect /* input field bounds, window-relative */, | 215 gfx::Rect /* input field bounds, window-relative */, |
216 std::vector<string16> /* suggestions */) | 216 std::vector<string16> /* suggestions */) |
OLD | NEW |