| 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 #ifndef CONTENT_COMMON_TEXT_INPUT_CLIENT_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_TEXT_INPUT_CLIENT_MESSAGES_H_ |
| 7 |
| 5 // Multiply-included message file, hence no include guard | 8 // Multiply-included message file, hence no include guard |
| 6 | 9 |
| 7 #include <stddef.h> | 10 #include <stddef.h> |
| 8 | 11 |
| 9 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 10 #include "ipc/ipc_message_macros.h" | 13 #include "ipc/ipc_message_macros.h" |
| 11 #include "ui/gfx/geometry/rect.h" | 14 #include "ui/gfx/geometry/rect.h" |
| 12 #include "ui/gfx/range/range.h" | 15 #include "ui/gfx/range/range.h" |
| 13 | 16 |
| 14 #if defined(OS_MACOSX) | 17 #if defined(OS_MACOSX) |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 IPC_MESSAGE_ROUTED2(TextInputClientReplyMsg_GotStringForRange, | 62 IPC_MESSAGE_ROUTED2(TextInputClientReplyMsg_GotStringForRange, |
| 60 mac::AttributedStringCoder::EncodedString, | 63 mac::AttributedStringCoder::EncodedString, |
| 61 gfx::Point) | 64 gfx::Point) |
| 62 | 65 |
| 63 // Reply message for TextInputClientMsg_StringAtPoint | 66 // Reply message for TextInputClientMsg_StringAtPoint |
| 64 IPC_MESSAGE_ROUTED2(TextInputClientReplyMsg_GotStringAtPoint, | 67 IPC_MESSAGE_ROUTED2(TextInputClientReplyMsg_GotStringAtPoint, |
| 65 mac::AttributedStringCoder::EncodedString, | 68 mac::AttributedStringCoder::EncodedString, |
| 66 gfx::Point) | 69 gfx::Point) |
| 67 #endif // defined(OS_MACOSX) | 70 #endif // defined(OS_MACOSX) |
| 68 | 71 |
| 72 |
| 73 #endif // CONTENT_COMMON_TEXT_INPUT_CLIENT_MESSAGES_H_ |
| OLD | NEW |