| 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 804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 // modal dialog. | 815 // modal dialog. |
| 816 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_ClickAppModalDialogButton, | 816 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_ClickAppModalDialogButton, |
| 817 int /* view::DelegateDialog::DialogButton */, | 817 int /* view::DelegateDialog::DialogButton */, |
| 818 bool /* success */) | 818 bool /* success */) |
| 819 | 819 |
| 820 // This messages sets a string-value preference. | 820 // This messages sets a string-value preference. |
| 821 IPC_SYNC_MESSAGE_ROUTED3_1(AutomationMsg_SetStringPreference, | 821 IPC_SYNC_MESSAGE_ROUTED3_1(AutomationMsg_SetStringPreference, |
| 822 int /* browser handle */, | 822 int /* browser handle */, |
| 823 std::wstring /* pref name */, | 823 std::wstring /* pref name */, |
| 824 std::wstring /* pref value */, | 824 std::wstring /* pref value */, |
| 825 bool) | 825 bool /* success */) |
| 826 | 826 |
| 827 // This messages gets a boolean-value preference. | 827 // This messages gets a boolean-value preference. |
| 828 IPC_SYNC_MESSAGE_ROUTED2_2(AutomationMsg_GetBooleanPreference, | 828 IPC_SYNC_MESSAGE_ROUTED2_2(AutomationMsg_GetBooleanPreference, |
| 829 int /* browser handle */, | 829 int /* browser handle */, |
| 830 std::wstring /* pref name */, | 830 std::wstring /* pref name */, |
| 831 bool /* success */, | 831 bool /* pref value */, |
| 832 bool /* pref value */) | 832 bool /* success */) |
| 833 | 833 |
| 834 // This messages sets a boolean-value preference. | 834 // This messages sets a boolean-value preference. |
| 835 IPC_SYNC_MESSAGE_ROUTED3_1(AutomationMsg_SetBooleanPreference, | 835 IPC_SYNC_MESSAGE_ROUTED3_1(AutomationMsg_SetBooleanPreference, |
| 836 int /* browser handle */, | 836 int /* browser handle */, |
| 837 std::wstring /* pref name */, | 837 std::wstring /* pref name */, |
| 838 bool /* pref value */, | 838 bool /* pref value */, |
| 839 bool /* success */) | 839 bool /* success */) |
| 840 | 840 |
| 841 // Queries the current used encoding name of the page in the specified | 841 // Queries the current used encoding name of the page in the specified |
| 842 // web content tab. | 842 // web content tab. |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1103 | 1103 |
| 1104 // Returns whether the window is maximized. | 1104 // Returns whether the window is maximized. |
| 1105 // Request: | 1105 // Request: |
| 1106 // int - the handle of the window | 1106 // int - the handle of the window |
| 1107 // Response: | 1107 // Response: |
| 1108 // bool - true if the window is maximized | 1108 // bool - true if the window is maximized |
| 1109 // bool - true if query is successful | 1109 // bool - true if query is successful |
| 1110 IPC_SYNC_MESSAGE_ROUTED1_2(AutomationMsg_IsWindowMaximized, int, bool, bool) | 1110 IPC_SYNC_MESSAGE_ROUTED1_2(AutomationMsg_IsWindowMaximized, int, bool, bool) |
| 1111 | 1111 |
| 1112 IPC_END_MESSAGES(Automation) | 1112 IPC_END_MESSAGES(Automation) |
| OLD | NEW |