| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, | 188 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, |
| 189 std::vector<autofill::FormData> /* forms */, | 189 std::vector<autofill::FormData> /* forms */, |
| 190 base::TimeTicks /* timestamp */) | 190 base::TimeTicks /* timestamp */) |
| 191 | 191 |
| 192 // Notification that password forms have been seen that are candidates for | 192 // Notification that password forms have been seen that are candidates for |
| 193 // filling/submitting by the password manager. | 193 // filling/submitting by the password manager. |
| 194 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed, | 194 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed, |
| 195 std::vector<autofill::PasswordForm> /* forms */) | 195 std::vector<autofill::PasswordForm> /* forms */) |
| 196 | 196 |
| 197 // Notification that initial layout has occurred and the following password | 197 // Notification that initial layout has occurred and the following password |
| 198 // forms are visible on the page (e.g. not set to display:none.) | 198 // forms are visible on the page (e.g. not set to display:none.), and whether |
| 199 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered, | 199 // all frames in the page have been rendered. |
| 200 std::vector<autofill::PasswordForm> /* forms */) | 200 IPC_MESSAGE_ROUTED2(AutofillHostMsg_PasswordFormsRendered, |
| 201 std::vector<autofill::PasswordForm> /* forms */, |
| 202 bool /* did_stop_loading */) |
| 201 | 203 |
| 202 // A ping to the browser that PasswordAutofillAgent was constructed. As a | 204 // A ping to the browser that PasswordAutofillAgent was constructed. As a |
| 203 // consequence, the browser sends AutofillMsg_SetLoggingState with the current | 205 // consequence, the browser sends AutofillMsg_SetLoggingState with the current |
| 204 // state of the logging activity. | 206 // state of the logging activity. |
| 205 IPC_MESSAGE_ROUTED0(AutofillHostMsg_PasswordAutofillAgentConstructed); | 207 IPC_MESSAGE_ROUTED0(AutofillHostMsg_PasswordAutofillAgentConstructed); |
| 206 | 208 |
| 207 // Notification that this password form was submitted by the user. | 209 // Notification that this password form was submitted by the user. |
| 208 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormSubmitted, | 210 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormSubmitted, |
| 209 autofill::PasswordForm /* form */) | 211 autofill::PasswordForm /* form */) |
| 210 | 212 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, | 289 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, |
| 288 autofill::FormFieldData /* the form field */, | 290 autofill::FormFieldData /* the form field */, |
| 289 gfx::RectF /* input field bounds, window-relative */, | 291 gfx::RectF /* input field bounds, window-relative */, |
| 290 std::vector<base::string16> /* suggestions */, | 292 std::vector<base::string16> /* suggestions */, |
| 291 std::vector<base::string16> /* realms */) | 293 std::vector<base::string16> /* realms */) |
| 292 | 294 |
| 293 // Inform browser of data list values for the curent field. | 295 // Inform browser of data list values for the curent field. |
| 294 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 296 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
| 295 std::vector<base::string16> /* values */, | 297 std::vector<base::string16> /* values */, |
| 296 std::vector<base::string16> /* labels */) | 298 std::vector<base::string16> /* labels */) |
| OLD | NEW |