| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Multiply-included message file, hence no include guard | 5 // Multiply-included message file, hence no include guard |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 IPC_MESSAGE_ROUTED1(TextInputClientMsg_StringAtPoint, gfx::Point) | 41 IPC_MESSAGE_ROUTED1(TextInputClientMsg_StringAtPoint, gfx::Point) |
| 42 | 42 |
| 43 //////////////////////////////////////////////////////////////////////////////// | 43 //////////////////////////////////////////////////////////////////////////////// |
| 44 | 44 |
| 45 // Renderer -> Browser Replies ///////////////////////////////////////////////// | 45 // Renderer -> Browser Replies ///////////////////////////////////////////////// |
| 46 // These messages are sent in reply to the above messages. | 46 // These messages are sent in reply to the above messages. |
| 47 //////////////////////////////////////////////////////////////////////////////// | 47 //////////////////////////////////////////////////////////////////////////////// |
| 48 | 48 |
| 49 // Reply message for TextInputClientMsg_CharacterIndexForPoint. | 49 // Reply message for TextInputClientMsg_CharacterIndexForPoint. |
| 50 IPC_MESSAGE_ROUTED1(TextInputClientReplyMsg_GotCharacterIndexForPoint, | 50 IPC_MESSAGE_ROUTED1(TextInputClientReplyMsg_GotCharacterIndexForPoint, |
| 51 size_t /* character index */) | 51 uint32_t /* character index */) |
| 52 | 52 |
| 53 // Reply message for TextInputClientMsg_FirstRectForCharacterRange. | 53 // Reply message for TextInputClientMsg_FirstRectForCharacterRange. |
| 54 IPC_MESSAGE_ROUTED1(TextInputClientReplyMsg_GotFirstRectForRange, | 54 IPC_MESSAGE_ROUTED1(TextInputClientReplyMsg_GotFirstRectForRange, |
| 55 gfx::Rect /* frame rectangle */) | 55 gfx::Rect /* frame rectangle */) |
| 56 | 56 |
| 57 #if defined(OS_MACOSX) | 57 #if defined(OS_MACOSX) |
| 58 // Reply message for TextInputClientMsg_StringForRange. | 58 // Reply message for TextInputClientMsg_StringForRange. |
| 59 IPC_MESSAGE_ROUTED2(TextInputClientReplyMsg_GotStringForRange, | 59 IPC_MESSAGE_ROUTED2(TextInputClientReplyMsg_GotStringForRange, |
| 60 mac::AttributedStringCoder::EncodedString, | 60 mac::AttributedStringCoder::EncodedString, |
| 61 gfx::Point) | 61 gfx::Point) |
| 62 | 62 |
| 63 // Reply message for TextInputClientMsg_StringAtPoint | 63 // Reply message for TextInputClientMsg_StringAtPoint |
| 64 IPC_MESSAGE_ROUTED2(TextInputClientReplyMsg_GotStringAtPoint, | 64 IPC_MESSAGE_ROUTED2(TextInputClientReplyMsg_GotStringAtPoint, |
| 65 mac::AttributedStringCoder::EncodedString, | 65 mac::AttributedStringCoder::EncodedString, |
| 66 gfx::Point) | 66 gfx::Point) |
| 67 #endif // defined(OS_MACOSX) | 67 #endif // defined(OS_MACOSX) |
| 68 | 68 |
| OLD | NEW |