OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 1403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1414 IPC_MESSAGE_ROUTED1(ViewHostMsg_RunFileChooser, | 1414 IPC_MESSAGE_ROUTED1(ViewHostMsg_RunFileChooser, |
1415 ViewHostMsg_RunFileChooser_Params) | 1415 ViewHostMsg_RunFileChooser_Params) |
1416 | 1416 |
1417 // Notification that forms have been seen that are candidates for | 1417 // Notification that forms have been seen that are candidates for |
1418 // filling/submitting by the AutoFillManager. | 1418 // filling/submitting by the AutoFillManager. |
1419 IPC_MESSAGE_ROUTED1(ViewHostMsg_FormsSeen, | 1419 IPC_MESSAGE_ROUTED1(ViewHostMsg_FormsSeen, |
1420 std::vector<webkit_glue::FormData> /* forms */) | 1420 std::vector<webkit_glue::FormData> /* forms */) |
1421 | 1421 |
1422 // Notification that password forms have been seen that are candidates for | 1422 // Notification that password forms have been seen that are candidates for |
1423 // filling/submitting by the password manager. | 1423 // filling/submitting by the password manager. |
1424 IPC_MESSAGE_ROUTED1(ViewHostMsg_PasswordFormsSeen, | 1424 IPC_MESSAGE_ROUTED1(ViewHostMsg_PasswordFormsFound, |
| 1425 std::vector<webkit_glue::PasswordForm> /* forms */) |
| 1426 |
| 1427 // Notification that initial layout has occurred and the following password |
| 1428 // forms are visible on the page (e.g. not set to display:none.) |
| 1429 IPC_MESSAGE_ROUTED1(ViewHostMsg_PasswordFormsVisible, |
1425 std::vector<webkit_glue::PasswordForm> /* forms */) | 1430 std::vector<webkit_glue::PasswordForm> /* forms */) |
1426 | 1431 |
1427 // Notification that a form has been submitted. The user hit the button. | 1432 // Notification that a form has been submitted. The user hit the button. |
1428 IPC_MESSAGE_ROUTED1(ViewHostMsg_FormSubmitted, | 1433 IPC_MESSAGE_ROUTED1(ViewHostMsg_FormSubmitted, |
1429 webkit_glue::FormData /* form */) | 1434 webkit_glue::FormData /* form */) |
1430 | 1435 |
1431 // Used to tell the parent the user started dragging in the content area. The | 1436 // Used to tell the parent the user started dragging in the content area. The |
1432 // WebDropData struct contains contextual information about the pieces of the | 1437 // WebDropData struct contains contextual information about the pieces of the |
1433 // page the user dragged. The parent uses this notification to initiate a | 1438 // page the user dragged. The parent uses this notification to initiate a |
1434 // drag session at the OS level. | 1439 // drag session at the OS level. |
(...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2301 int /* render_view_id */, | 2306 int /* render_view_id */, |
2302 int /* bridge_id */) | 2307 int /* bridge_id */) |
2303 | 2308 |
2304 // The |render_view_id| and |bridge_id| requests Geolocation service to | 2309 // The |render_view_id| and |bridge_id| requests Geolocation service to |
2305 // resume. | 2310 // resume. |
2306 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, | 2311 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, |
2307 int /* render_view_id */, | 2312 int /* render_view_id */, |
2308 int /* bridge_id */) | 2313 int /* bridge_id */) |
2309 | 2314 |
2310 IPC_END_MESSAGES(ViewHost) | 2315 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |