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 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1434 IPC_SYNC_MESSAGE_ROUTED2_1(AutomationMsg_WaitForInfoBarCount, | 1434 IPC_SYNC_MESSAGE_ROUTED2_1(AutomationMsg_WaitForInfoBarCount, |
1435 int /* tab handle */, | 1435 int /* tab handle */, |
1436 int /* target count */, | 1436 int /* target count */, |
1437 bool /* success */) | 1437 bool /* success */) |
1438 | 1438 |
1439 // Waits for the autocomplete edit to receive focus. | 1439 // Waits for the autocomplete edit to receive focus. |
1440 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_WaitForAutocompleteEditFocus, | 1440 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_WaitForAutocompleteEditFocus, |
1441 int /* autocomplete edit handle */, | 1441 int /* autocomplete edit handle */, |
1442 bool /* success */) | 1442 bool /* success */) |
1443 | 1443 |
| 1444 // Loads all blocked plug-ins on the page. |
| 1445 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_LoadBlockedPlugins, |
| 1446 int /* tab handle */, |
| 1447 bool /* success */) |
| 1448 |
1444 IPC_END_MESSAGES(Automation) | 1449 IPC_END_MESSAGES(Automation) |
OLD | NEW |