| 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 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1397 int, bool) | 1397 int, bool) |
| 1398 | 1398 |
| 1399 // This message requests the external tab identified by the tab handle | 1399 // This message requests the external tab identified by the tab handle |
| 1400 // passed in be closed. | 1400 // passed in be closed. |
| 1401 // Request: | 1401 // Request: |
| 1402 // -int: Tab handle | 1402 // -int: Tab handle |
| 1403 // Response: | 1403 // Response: |
| 1404 // None expected | 1404 // None expected |
| 1405 IPC_MESSAGE_ROUTED1(AutomationMsg_CloseExternalTab, int) | 1405 IPC_MESSAGE_ROUTED1(AutomationMsg_CloseExternalTab, int) |
| 1406 | 1406 |
| 1407 // This message requests that the external tab identified by the tab handle |
| 1408 // runs unload handlers if any on the current page. |
| 1409 // Request: |
| 1410 // -int: Tab handle |
| 1411 // -gfx::NativeWindow: notification window |
| 1412 // -int: notification message. |
| 1413 // Response: |
| 1414 // None expected |
| 1415 IPC_MESSAGE_ROUTED3(AutomationMsg_RunUnloadHandlers, int, gfx::NativeWindow, |
| 1416 int) |
| 1417 |
| 1407 IPC_END_MESSAGES(Automation) | 1418 IPC_END_MESSAGES(Automation) |
| OLD | NEW |