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 // Defines the IPC messages used by the automation interface. | 5 // Defines the IPC messages used by the automation interface. |
6 | 6 |
7 // NOTE: All IPC messages have either a routing_id of 0 (for asynchronous | 7 // NOTE: All IPC messages have either a routing_id of 0 (for asynchronous |
8 // messages), or one that's been assigned by the proxy (for calls | 8 // messages), or one that's been assigned by the proxy (for calls |
9 // which expect a response). The routing_id shouldn't be used for | 9 // which expect a response). The routing_id shouldn't be used for |
10 // any other purpose in these message types. | 10 // any other purpose in these message types. |
(...skipping 1357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1368 // This message requests the cookie be deleted for given url in the | 1368 // This message requests the cookie be deleted for given url in the |
1369 // profile of the tab identified by the first parameter. The second | 1369 // profile of the tab identified by the first parameter. The second |
1370 // parameter is the cookie name. | 1370 // parameter is the cookie name. |
1371 IPC_SYNC_MESSAGE_CONTROL3_1(AutomationMsg_DeleteCookie, | 1371 IPC_SYNC_MESSAGE_CONTROL3_1(AutomationMsg_DeleteCookie, |
1372 GURL, | 1372 GURL, |
1373 std::string, | 1373 std::string, |
1374 int /* tab handle */, | 1374 int /* tab handle */, |
1375 bool /* result */) | 1375 bool /* result */) |
1376 | 1376 |
1377 // This message triggers the collected cookies dialog for a specific tab. | 1377 // This message triggers the collected cookies dialog for a specific tab. |
1378 IPC_SYNC_MESSAGE_CONTROL1_1(AutomationMsg_ShowCollectedCookiesDialog, | 1378 IPC_SYNC_MESSAGE_CONTROL1_1(AutomationMsg_DEPRECATED_ShowCollectedCookiesDialog, |
1379 int /* tab handle */, | 1379 int /* tab handle */, |
1380 bool /* result */) | 1380 bool /* result */) |
1381 | 1381 |
1382 // This message requests the external tab identified by the tab handle | 1382 // This message requests the external tab identified by the tab handle |
1383 // passed in be closed. | 1383 // passed in be closed. |
1384 // Request: | 1384 // Request: |
1385 // Response: | 1385 // Response: |
1386 // None expected | 1386 // None expected |
1387 IPC_MESSAGE_ROUTED0(AutomationMsg_CloseExternalTab) | 1387 IPC_MESSAGE_ROUTED0(AutomationMsg_CloseExternalTab) |
1388 | 1388 |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1538 // Sent when the renderer has completed or canceled a client redirect for a | 1538 // Sent when the renderer has completed or canceled a client redirect for a |
1539 // particular frame. This message may be sent multiple times for the same | 1539 // particular frame. This message may be sent multiple times for the same |
1540 // redirect. | 1540 // redirect. |
1541 IPC_MESSAGE_ROUTED1(AutomationMsg_DidCompleteOrCancelClientRedirect, | 1541 IPC_MESSAGE_ROUTED1(AutomationMsg_DidCompleteOrCancelClientRedirect, |
1542 int64 /* frame_id */) | 1542 int64 /* frame_id */) |
1543 | 1543 |
1544 // YOUR NEW MESSAGE MIGHT NOT BELONG HERE. | 1544 // YOUR NEW MESSAGE MIGHT NOT BELONG HERE. |
1545 // This is the section for renderer -> browser automation messages. If it is | 1545 // This is the section for renderer -> browser automation messages. If it is |
1546 // an automation <-> browser message, put it above this section. The "no line | 1546 // an automation <-> browser message, put it above this section. The "no line |
1547 // number change" applies only to the automation <-> browser messages. | 1547 // number change" applies only to the automation <-> browser messages. |
OLD | NEW |