Chromium Code Reviews| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 278 IPC_STRUCT_TRAITS_BEGIN(content::TextInputState) | 278 IPC_STRUCT_TRAITS_BEGIN(content::TextInputState) |
| 279 IPC_STRUCT_TRAITS_MEMBER(type) | 279 IPC_STRUCT_TRAITS_MEMBER(type) |
| 280 IPC_STRUCT_TRAITS_MEMBER(mode) | 280 IPC_STRUCT_TRAITS_MEMBER(mode) |
| 281 IPC_STRUCT_TRAITS_MEMBER(flags) | 281 IPC_STRUCT_TRAITS_MEMBER(flags) |
| 282 IPC_STRUCT_TRAITS_MEMBER(value) | 282 IPC_STRUCT_TRAITS_MEMBER(value) |
| 283 IPC_STRUCT_TRAITS_MEMBER(selection_start) | 283 IPC_STRUCT_TRAITS_MEMBER(selection_start) |
| 284 IPC_STRUCT_TRAITS_MEMBER(selection_end) | 284 IPC_STRUCT_TRAITS_MEMBER(selection_end) |
| 285 IPC_STRUCT_TRAITS_MEMBER(composition_start) | 285 IPC_STRUCT_TRAITS_MEMBER(composition_start) |
| 286 IPC_STRUCT_TRAITS_MEMBER(composition_end) | 286 IPC_STRUCT_TRAITS_MEMBER(composition_end) |
| 287 IPC_STRUCT_TRAITS_MEMBER(can_compose_inline) | 287 IPC_STRUCT_TRAITS_MEMBER(can_compose_inline) |
| 288 IPC_STRUCT_TRAITS_MEMBER(show_ime_if_needed) | 288 IPC_STRUCT_TRAITS_MEMBER(show_ime_if_needed) |
|
aelias_OOO_until_Jul13
2017/01/04 20:11:01
Please rename to "show_virtual_keyboard" (and ever
| |
| 289 IPC_STRUCT_TRAITS_MEMBER(is_non_ime_change) | 289 IPC_STRUCT_TRAITS_MEMBER(reply_to_request) |
| 290 IPC_STRUCT_TRAITS_END() | 290 IPC_STRUCT_TRAITS_END() |
| 291 | 291 |
| 292 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params) | 292 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params) |
| 293 // URL for the worker script. | 293 // URL for the worker script. |
| 294 IPC_STRUCT_MEMBER(GURL, url) | 294 IPC_STRUCT_MEMBER(GURL, url) |
| 295 | 295 |
| 296 // Name for a SharedWorker, otherwise empty string. | 296 // Name for a SharedWorker, otherwise empty string. |
| 297 IPC_STRUCT_MEMBER(base::string16, name) | 297 IPC_STRUCT_MEMBER(base::string16, name) |
| 298 | 298 |
| 299 // Security policy used in the worker. | 299 // Security policy used in the worker. |
| (...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 914 int /* y */) | 914 int /* y */) |
| 915 | 915 |
| 916 #elif defined(OS_MACOSX) | 916 #elif defined(OS_MACOSX) |
| 917 // Receives content of a web page as plain text. | 917 // Receives content of a web page as plain text. |
| 918 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 918 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 919 #endif | 919 #endif |
| 920 | 920 |
| 921 // Adding a new message? Stick to the sort order above: first platform | 921 // Adding a new message? Stick to the sort order above: first platform |
| 922 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 922 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 923 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 923 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |