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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 IPC_STRUCT_TRAITS_MEMBER(mode) | 279 IPC_STRUCT_TRAITS_MEMBER(mode) |
280 IPC_STRUCT_TRAITS_MEMBER(flags) | 280 IPC_STRUCT_TRAITS_MEMBER(flags) |
281 IPC_STRUCT_TRAITS_MEMBER(value) | 281 IPC_STRUCT_TRAITS_MEMBER(value) |
282 IPC_STRUCT_TRAITS_MEMBER(selection_start) | 282 IPC_STRUCT_TRAITS_MEMBER(selection_start) |
283 IPC_STRUCT_TRAITS_MEMBER(selection_end) | 283 IPC_STRUCT_TRAITS_MEMBER(selection_end) |
284 IPC_STRUCT_TRAITS_MEMBER(composition_start) | 284 IPC_STRUCT_TRAITS_MEMBER(composition_start) |
285 IPC_STRUCT_TRAITS_MEMBER(composition_end) | 285 IPC_STRUCT_TRAITS_MEMBER(composition_end) |
286 IPC_STRUCT_TRAITS_MEMBER(can_compose_inline) | 286 IPC_STRUCT_TRAITS_MEMBER(can_compose_inline) |
287 IPC_STRUCT_TRAITS_MEMBER(show_ime_if_needed) | 287 IPC_STRUCT_TRAITS_MEMBER(show_ime_if_needed) |
288 IPC_STRUCT_TRAITS_MEMBER(is_non_ime_change) | 288 IPC_STRUCT_TRAITS_MEMBER(is_non_ime_change) |
| 289 IPC_STRUCT_TRAITS_MEMBER(batch_edit) |
289 IPC_STRUCT_TRAITS_END() | 290 IPC_STRUCT_TRAITS_END() |
290 | 291 |
291 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWindow_Params) | 292 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWindow_Params) |
292 // Routing ID of the view initiating the open. | 293 // Routing ID of the view initiating the open. |
293 IPC_STRUCT_MEMBER(int, opener_id) | 294 IPC_STRUCT_MEMBER(int, opener_id) |
294 | 295 |
295 // True if this open request came in the context of a user gesture. | 296 // True if this open request came in the context of a user gesture. |
296 IPC_STRUCT_MEMBER(bool, user_gesture) | 297 IPC_STRUCT_MEMBER(bool, user_gesture) |
297 | 298 |
298 // Type of window requested. | 299 // Type of window requested. |
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1160 int /* y */) | 1161 int /* y */) |
1161 | 1162 |
1162 #elif defined(OS_MACOSX) | 1163 #elif defined(OS_MACOSX) |
1163 // Receives content of a web page as plain text. | 1164 // Receives content of a web page as plain text. |
1164 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1165 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
1165 #endif | 1166 #endif |
1166 | 1167 |
1167 // Adding a new message? Stick to the sort order above: first platform | 1168 // Adding a new message? Stick to the sort order above: first platform |
1168 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1169 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1169 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1170 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |