OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
877 ViewHostMsg_ScrollRect_Params) | 877 ViewHostMsg_ScrollRect_Params) |
878 | 878 |
879 // Acknowledges receipt of a ViewMsg_HandleInputEvent message. | 879 // Acknowledges receipt of a ViewMsg_HandleInputEvent message. |
880 // Payload is a WebInputEvent::Type which is the type of the event, followed | 880 // Payload is a WebInputEvent::Type which is the type of the event, followed |
881 // by an optional WebInputEvent which is provided only if the event was not | 881 // by an optional WebInputEvent which is provided only if the event was not |
882 // processed. | 882 // processed. |
883 IPC_MESSAGE_ROUTED0(ViewHostMsg_HandleInputEvent_ACK) | 883 IPC_MESSAGE_ROUTED0(ViewHostMsg_HandleInputEvent_ACK) |
884 | 884 |
885 IPC_MESSAGE_ROUTED0(ViewHostMsg_Focus) | 885 IPC_MESSAGE_ROUTED0(ViewHostMsg_Focus) |
886 IPC_MESSAGE_ROUTED0(ViewHostMsg_Blur) | 886 IPC_MESSAGE_ROUTED0(ViewHostMsg_Blur) |
| 887 IPC_MESSAGE_ROUTED0(ViewHostMsg_FocusedNodeChanged) |
887 | 888 |
888 // Returns the window location of the given window. | 889 // Returns the window location of the given window. |
889 // TODO(shess): Provide a mapping from reply_msg->routing_id() to | 890 // TODO(shess): Provide a mapping from reply_msg->routing_id() to |
890 // HWND so that we can eliminate the NativeViewId parameter. | 891 // HWND so that we can eliminate the NativeViewId parameter. |
891 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetWindowRect, | 892 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetWindowRect, |
892 gfx::NativeViewId /* window */, | 893 gfx::NativeViewId /* window */, |
893 gfx::Rect /* Out: Window location */) | 894 gfx::Rect /* Out: Window location */) |
894 | 895 |
895 IPC_MESSAGE_ROUTED1(ViewHostMsg_SetCursor, WebCursor) | 896 IPC_MESSAGE_ROUTED1(ViewHostMsg_SetCursor, WebCursor) |
896 // Result of string search in the page. | 897 // Result of string search in the page. |
(...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1735 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileAttributes, | 1736 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileAttributes, |
1736 FilePath /* the name of the file */, | 1737 FilePath /* the name of the file */, |
1737 int32 /* a unique message ID */) | 1738 int32 /* a unique message ID */) |
1738 | 1739 |
1739 // Asks the browser process to return the size of a DB file | 1740 // Asks the browser process to return the size of a DB file |
1740 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileSize, | 1741 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileSize, |
1741 FilePath /* the name of the file */, | 1742 FilePath /* the name of the file */, |
1742 int32 /* a unique message ID */) | 1743 int32 /* a unique message ID */) |
1743 | 1744 |
1744 IPC_END_MESSAGES(ViewHost) | 1745 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |