| 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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 IPC_STRUCT_TRAITS_MEMBER(type) | 271 IPC_STRUCT_TRAITS_MEMBER(type) |
| 272 IPC_STRUCT_TRAITS_MEMBER(params) | 272 IPC_STRUCT_TRAITS_MEMBER(params) |
| 273 IPC_STRUCT_TRAITS_MEMBER(time) | 273 IPC_STRUCT_TRAITS_MEMBER(time) |
| 274 IPC_STRUCT_TRAITS_END() | 274 IPC_STRUCT_TRAITS_END() |
| 275 | 275 |
| 276 IPC_STRUCT_TRAITS_BEGIN(content::TextInputState) | 276 IPC_STRUCT_TRAITS_BEGIN(content::TextInputState) |
| 277 IPC_STRUCT_TRAITS_MEMBER(type) | 277 IPC_STRUCT_TRAITS_MEMBER(type) |
| 278 IPC_STRUCT_TRAITS_MEMBER(mode) | 278 IPC_STRUCT_TRAITS_MEMBER(mode) |
| 279 IPC_STRUCT_TRAITS_MEMBER(flags) | 279 IPC_STRUCT_TRAITS_MEMBER(flags) |
| 280 IPC_STRUCT_TRAITS_MEMBER(value) | 280 IPC_STRUCT_TRAITS_MEMBER(value) |
| 281 IPC_STRUCT_TRAITS_MEMBER(placeholder) |
| 281 IPC_STRUCT_TRAITS_MEMBER(selection_start) | 282 IPC_STRUCT_TRAITS_MEMBER(selection_start) |
| 282 IPC_STRUCT_TRAITS_MEMBER(selection_end) | 283 IPC_STRUCT_TRAITS_MEMBER(selection_end) |
| 283 IPC_STRUCT_TRAITS_MEMBER(composition_start) | 284 IPC_STRUCT_TRAITS_MEMBER(composition_start) |
| 284 IPC_STRUCT_TRAITS_MEMBER(composition_end) | 285 IPC_STRUCT_TRAITS_MEMBER(composition_end) |
| 285 IPC_STRUCT_TRAITS_MEMBER(can_compose_inline) | 286 IPC_STRUCT_TRAITS_MEMBER(can_compose_inline) |
| 286 IPC_STRUCT_TRAITS_MEMBER(show_ime_if_needed) | 287 IPC_STRUCT_TRAITS_MEMBER(show_ime_if_needed) |
| 287 IPC_STRUCT_TRAITS_MEMBER(is_non_ime_change) | 288 IPC_STRUCT_TRAITS_MEMBER(is_non_ime_change) |
| 288 IPC_STRUCT_TRAITS_MEMBER(batch_edit) | 289 IPC_STRUCT_TRAITS_MEMBER(batch_edit) |
| 289 IPC_STRUCT_TRAITS_END() | 290 IPC_STRUCT_TRAITS_END() |
| 290 | 291 |
| (...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1156 int /* y */) | 1157 int /* y */) |
| 1157 | 1158 |
| 1158 #elif defined(OS_MACOSX) | 1159 #elif defined(OS_MACOSX) |
| 1159 // Receives content of a web page as plain text. | 1160 // Receives content of a web page as plain text. |
| 1160 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1161 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1161 #endif | 1162 #endif |
| 1162 | 1163 |
| 1163 // Adding a new message? Stick to the sort order above: first platform | 1164 // Adding a new message? Stick to the sort order above: first platform |
| 1164 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1165 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1165 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1166 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |