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) | |
290 IPC_STRUCT_TRAITS_END() | 289 IPC_STRUCT_TRAITS_END() |
291 | 290 |
292 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params) | 291 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params) |
293 // URL for the worker script. | 292 // URL for the worker script. |
294 IPC_STRUCT_MEMBER(GURL, url) | 293 IPC_STRUCT_MEMBER(GURL, url) |
295 | 294 |
296 // Name for a SharedWorker, otherwise empty string. | 295 // Name for a SharedWorker, otherwise empty string. |
297 IPC_STRUCT_MEMBER(base::string16, name) | 296 IPC_STRUCT_MEMBER(base::string16, name) |
298 | 297 |
299 // Security policy used in the worker. | 298 // Security policy used in the worker. |
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
935 int /* y */) | 934 int /* y */) |
936 | 935 |
937 #elif defined(OS_MACOSX) | 936 #elif defined(OS_MACOSX) |
938 // Receives content of a web page as plain text. | 937 // Receives content of a web page as plain text. |
939 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 938 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
940 #endif | 939 #endif |
941 | 940 |
942 // Adding a new message? Stick to the sort order above: first platform | 941 // Adding a new message? Stick to the sort order above: first platform |
943 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 942 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
944 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 943 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |