| 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 IPC_STRUCT_TRAITS_MEMBER(mode) | 277 IPC_STRUCT_TRAITS_MEMBER(mode) |
| 278 IPC_STRUCT_TRAITS_MEMBER(flags) | 278 IPC_STRUCT_TRAITS_MEMBER(flags) |
| 279 IPC_STRUCT_TRAITS_MEMBER(value) | 279 IPC_STRUCT_TRAITS_MEMBER(value) |
| 280 IPC_STRUCT_TRAITS_MEMBER(selection_start) | 280 IPC_STRUCT_TRAITS_MEMBER(selection_start) |
| 281 IPC_STRUCT_TRAITS_MEMBER(selection_end) | 281 IPC_STRUCT_TRAITS_MEMBER(selection_end) |
| 282 IPC_STRUCT_TRAITS_MEMBER(composition_start) | 282 IPC_STRUCT_TRAITS_MEMBER(composition_start) |
| 283 IPC_STRUCT_TRAITS_MEMBER(composition_end) | 283 IPC_STRUCT_TRAITS_MEMBER(composition_end) |
| 284 IPC_STRUCT_TRAITS_MEMBER(can_compose_inline) | 284 IPC_STRUCT_TRAITS_MEMBER(can_compose_inline) |
| 285 IPC_STRUCT_TRAITS_MEMBER(show_ime_if_needed) | 285 IPC_STRUCT_TRAITS_MEMBER(show_ime_if_needed) |
| 286 IPC_STRUCT_TRAITS_MEMBER(is_non_ime_change) | 286 IPC_STRUCT_TRAITS_MEMBER(is_non_ime_change) |
| 287 IPC_STRUCT_TRAITS_MEMBER(batch_edit) | |
| 288 IPC_STRUCT_TRAITS_END() | 287 IPC_STRUCT_TRAITS_END() |
| 289 | 288 |
| 290 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params) | 289 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params) |
| 291 // URL for the worker script. | 290 // URL for the worker script. |
| 292 IPC_STRUCT_MEMBER(GURL, url) | 291 IPC_STRUCT_MEMBER(GURL, url) |
| 293 | 292 |
| 294 // Name for a SharedWorker, otherwise empty string. | 293 // Name for a SharedWorker, otherwise empty string. |
| 295 IPC_STRUCT_MEMBER(base::string16, name) | 294 IPC_STRUCT_MEMBER(base::string16, name) |
| 296 | 295 |
| 297 // Security policy used in the worker. | 296 // Security policy used in the worker. |
| (...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1003 int /* y */) | 1002 int /* y */) |
| 1004 | 1003 |
| 1005 #elif defined(OS_MACOSX) | 1004 #elif defined(OS_MACOSX) |
| 1006 // Receives content of a web page as plain text. | 1005 // Receives content of a web page as plain text. |
| 1007 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1006 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1008 #endif | 1007 #endif |
| 1009 | 1008 |
| 1010 // Adding a new message? Stick to the sort order above: first platform | 1009 // Adding a new message? Stick to the sort order above: first platform |
| 1011 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1010 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1012 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1011 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |