| 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 // Defines the IPC messages used by the automation interface. | 5 // Defines the IPC messages used by the automation interface. |
| 6 | 6 |
| 7 // This header is meant to be included in multiple passes, hence no traditional | 7 // This header is meant to be included in multiple passes, hence no traditional |
| 8 // header guard. | 8 // header guard. |
| 9 // See ipc_message_macros.h for explanation of the macros and passes. | 9 // See ipc_message_macros.h for explanation of the macros and passes. |
| 10 | 10 |
| (...skipping 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1389 WindowOpenDisposition, | 1389 WindowOpenDisposition, |
| 1390 bool /* result */) | 1390 bool /* result */) |
| 1391 | 1391 |
| 1392 | 1392 |
| 1393 // This message requests the cookie be delete for given url in the | 1393 // This message requests the cookie be delete for given url in the |
| 1394 // profile of the tab identified by the first parameter. The second | 1394 // profile of the tab identified by the first parameter. The second |
| 1395 // parameter is the cookie name. | 1395 // parameter is the cookie name. |
| 1396 IPC_SYNC_MESSAGE_ROUTED3_1(AutomationMsg_DeleteCookie, GURL, std::string, | 1396 IPC_SYNC_MESSAGE_ROUTED3_1(AutomationMsg_DeleteCookie, GURL, std::string, |
| 1397 int, bool) | 1397 int, bool) |
| 1398 | 1398 |
| 1399 // Waits for the download shelf to appear or disappear (depending on |
| 1400 // |visibility|) and sets |success| to true on success. |
| 1401 IPC_SYNC_MESSAGE_ROUTED2_1(AutomationMsg_WaitForDownloadShelfVisibilityChange, |
| 1402 int /* browser handle */, |
| 1403 bool /* visibility */, |
| 1404 bool /* success */) |
| 1405 |
| 1399 IPC_END_MESSAGES(Automation) | 1406 IPC_END_MESSAGES(Automation) |
| OLD | NEW |