| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_MEMBER(batch_edit) |
| 290 IPC_STRUCT_TRAITS_MEMBER(requires_ack) |
| 290 IPC_STRUCT_TRAITS_END() | 291 IPC_STRUCT_TRAITS_END() |
| 291 | 292 |
| 292 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params) | 293 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params) |
| 293 // URL for the worker script. | 294 // URL for the worker script. |
| 294 IPC_STRUCT_MEMBER(GURL, url) | 295 IPC_STRUCT_MEMBER(GURL, url) |
| 295 | 296 |
| 296 // Name for a SharedWorker, otherwise empty string. | 297 // Name for a SharedWorker, otherwise empty string. |
| 297 IPC_STRUCT_MEMBER(base::string16, name) | 298 IPC_STRUCT_MEMBER(base::string16, name) |
| 298 | 299 |
| 299 // Security policy used in the worker. | 300 // Security policy used in the worker. |
| (...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 945 int /* y */) | 946 int /* y */) |
| 946 | 947 |
| 947 #elif defined(OS_MACOSX) | 948 #elif defined(OS_MACOSX) |
| 948 // Receives content of a web page as plain text. | 949 // Receives content of a web page as plain text. |
| 949 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 950 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 950 #endif | 951 #endif |
| 951 | 952 |
| 952 // Adding a new message? Stick to the sort order above: first platform | 953 // Adding a new message? Stick to the sort order above: first platform |
| 953 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 954 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 954 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 955 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |