| 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 "ipc/ipc_message_macros.h" | 7 #include "ipc/ipc_message_macros.h" |
| 8 #include "ui/gfx/geometry/rect.h" | 8 #include "ui/gfx/geometry/rect.h" |
| 9 #include "ui/gfx/range/range.h" | 9 #include "ui/gfx/range/range.h" |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 // Reply message for TextInputClientMsg_CharacterIndexForPoint. | 46 // Reply message for TextInputClientMsg_CharacterIndexForPoint. |
| 47 IPC_MESSAGE_ROUTED1(TextInputClientReplyMsg_GotCharacterIndexForPoint, | 47 IPC_MESSAGE_ROUTED1(TextInputClientReplyMsg_GotCharacterIndexForPoint, |
| 48 size_t /* character index */) | 48 size_t /* character index */) |
| 49 | 49 |
| 50 // Reply message for TextInputClientMsg_FirstRectForCharacterRange. | 50 // Reply message for TextInputClientMsg_FirstRectForCharacterRange. |
| 51 IPC_MESSAGE_ROUTED1(TextInputClientReplyMsg_GotFirstRectForRange, | 51 IPC_MESSAGE_ROUTED1(TextInputClientReplyMsg_GotFirstRectForRange, |
| 52 gfx::Rect /* frame rectangle */) | 52 gfx::Rect /* frame rectangle */) |
| 53 | 53 |
| 54 #if defined(OS_MACOSX) | 54 #if defined(OS_MACOSX) |
| 55 // Reply message for TextInputClientMsg_StringForRange. | 55 // Reply message for TextInputClientMsg_StringForRange. |
| 56 IPC_MESSAGE_ROUTED1(TextInputClientReplyMsg_GotStringForRange, | 56 IPC_MESSAGE_ROUTED2(TextInputClientReplyMsg_GotStringForRange, |
| 57 mac::AttributedStringCoder::EncodedString) | 57 mac::AttributedStringCoder::EncodedString, |
| 58 gfx::Point) |
| 58 | 59 |
| 59 // Reply message for TextInputClientMsg_StringAtPoint | 60 // Reply message for TextInputClientMsg_StringAtPoint |
| 60 IPC_MESSAGE_ROUTED2(TextInputClientReplyMsg_GotStringAtPoint, | 61 IPC_MESSAGE_ROUTED2(TextInputClientReplyMsg_GotStringAtPoint, |
| 61 mac::AttributedStringCoder::EncodedString, | 62 mac::AttributedStringCoder::EncodedString, |
| 62 gfx::Point) | 63 gfx::Point) |
| 63 #endif // defined(OS_MACOSX) | 64 #endif // defined(OS_MACOSX) |
| 64 | 65 |
| OLD | NEW |