Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 788 // This messages is used to block until a new navigation occurs (if there is | 788 // This messages is used to block until a new navigation occurs (if there is |
| 789 // none more recent then the time specified). | 789 // none more recent then the time specified). |
| 790 IPC_MESSAGE_ROUTED2(AutomationMsg_WaitForNavigationRequest, | 790 IPC_MESSAGE_ROUTED2(AutomationMsg_WaitForNavigationRequest, |
| 791 int /* tab_handle */, | 791 int /* tab_handle */, |
| 792 int64 /* last navigation time */) | 792 int64 /* last navigation time */) |
| 793 IPC_MESSAGE_ROUTED1(AutomationMsg_WaitForNavigationResponse, | 793 IPC_MESSAGE_ROUTED1(AutomationMsg_WaitForNavigationResponse, |
| 794 bool /* success */) | 794 bool /* success */) |
| 795 | 795 |
| 796 // This messages sets an int-value preference. | 796 // This messages sets an int-value preference. |
| 797 IPC_MESSAGE_ROUTED3(AutomationMsg_SetIntPreferenceRequest, | 797 IPC_MESSAGE_ROUTED3(AutomationMsg_SetIntPreferenceRequest, |
| 798 int /* browser handle */, | 798 int /* browser handle */, |
| 799 std::wstring /* pref name */, | 799 std::wstring /* pref name */, |
| 800 int /* value */) | 800 int /* value */) |
| 801 IPC_MESSAGE_ROUTED1(AutomationMsg_SetIntPreferenceResponse, | 801 IPC_MESSAGE_ROUTED1(AutomationMsg_SetIntPreferenceResponse, |
| 802 bool /* success */) | 802 bool /* success */) |
| 803 | 803 |
| 804 // Querries whether an app modal dialog is currently being shown. (i.e. a | |
|
Finnur
2008/11/11 07:30:03
Queries (one r)
| |
| 805 // javascript alert). | |
| 806 IPC_MESSAGE_ROUTED0(AutomationMsg_ShowingAppModalDialogRequest) | |
| 807 IPC_MESSAGE_ROUTED1(AutomationMsg_ShowingAppModalDialogResponse, | |
| 808 bool /* showning dialog */) | |
|
Finnur
2008/11/11 07:30:03
Showing (one n).
| |
| 809 | |
| 804 IPC_END_MESSAGES(Automation) | 810 IPC_END_MESSAGES(Automation) |
| 805 | |
| OLD | NEW |