Chromium Code Reviews| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 if password generation should be enabled. |
| 122 IPC_MESSAGE_ROUTED1(AutofillMsg_PasswordGenerationEnabled, | 122 IPC_MESSAGE_ROUTED1(AutofillMsg_PasswordGenerationEnabled, |
| 123 bool /* is_enabled */) | 123 bool /* is_enabled */) |
| 124 | 124 |
|
Ilya Sherman
2012/05/01 22:27:48
nit: Please remove this extra blank line.
zysxqn
2012/05/03 00:57:24
Done.
| |
| 125 | |
| 125 // Tells the renderer that the password field has accept the suggestion. | 126 // Tells the renderer that the password field has accept the suggestion. |
| 126 IPC_MESSAGE_ROUTED1(AutofillMsg_AcceptPasswordAutofillSuggestion, | 127 IPC_MESSAGE_ROUTED1(AutofillMsg_AcceptPasswordAutofillSuggestion, |
| 127 string16 /* username value*/) | 128 string16 /* username value*/) |
| 128 | 129 |
| 129 // Autofill messages sent from the renderer to the browser. | 130 // Autofill messages sent from the renderer to the browser. |
| 130 | 131 |
| 131 // Notification that forms have been seen that are candidates for | 132 // Notification that forms have been seen that are candidates for |
| 132 // filling/submitting by the AutofillManager. | 133 // filling/submitting by the AutofillManager. |
| 133 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, | 134 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, |
| 134 std::vector<webkit::forms::FormData> /* forms */, | 135 std::vector<webkit::forms::FormData> /* forms */, |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 207 IPC_MESSAGE_ROUTED2(AutofillHostMsg_AddPasswordFormMapping, | 208 IPC_MESSAGE_ROUTED2(AutofillHostMsg_AddPasswordFormMapping, |
| 208 webkit::forms::FormField, /* the user name field */ | 209 webkit::forms::FormField, /* the user name field */ |
| 209 webkit::forms::PasswordFormFillData /* password pairings */) | 210 webkit::forms::PasswordFormFillData /* password pairings */) |
| 210 | 211 |
| 211 // Instruct the browser to show a popup with the following suggestions from the | 212 // Instruct the browser to show a popup with the following suggestions from the |
| 212 // password manager. | 213 // password manager. |
| 213 IPC_MESSAGE_ROUTED3(AutofillHostMsg_ShowPasswordSuggestions, | 214 IPC_MESSAGE_ROUTED3(AutofillHostMsg_ShowPasswordSuggestions, |
| 214 webkit::forms::FormField /* the form field */, | 215 webkit::forms::FormField /* the form field */, |
| 215 gfx::Rect /* input field bounds, window-relative */, | 216 gfx::Rect /* input field bounds, window-relative */, |
| 216 std::vector<string16> /* suggestions */) | 217 std::vector<string16> /* suggestions */) |
| OLD | NEW |