| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Multiply-included message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 PP_Instance /* instance_id */, | 522 PP_Instance /* instance_id */, |
| 523 pp::proxy::HostResource /* result */) | 523 pp::proxy::HostResource /* result */) |
| 524 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashNetConnector_ConnectTcp, | 524 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashNetConnector_ConnectTcp, |
| 525 pp::proxy::HostResource /* connector */, | 525 pp::proxy::HostResource /* connector */, |
| 526 std::string /* host */, | 526 std::string /* host */, |
| 527 uint16_t /* port */) | 527 uint16_t /* port */) |
| 528 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlashNetConnector_ConnectTcpAddress, | 528 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlashNetConnector_ConnectTcpAddress, |
| 529 pp::proxy::HostResource /* connector */, | 529 pp::proxy::HostResource /* connector */, |
| 530 std::string /* net_address_as_string */) | 530 std::string /* net_address_as_string */) |
| 531 | 531 |
| 532 // PPB_Font. | |
| 533 IPC_SYNC_MESSAGE_ROUTED2_3( | |
| 534 PpapiHostMsg_PPBFont_Create, | |
| 535 PP_Instance /* instance */, | |
| 536 pp::proxy::SerializedFontDescription /* in_description */, | |
| 537 pp::proxy::HostResource /* result */, | |
| 538 pp::proxy::SerializedFontDescription /* out_description */, | |
| 539 std::string /* out_metrics */) | |
| 540 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFont_DrawTextAt, | |
| 541 pp::proxy::SerializedVar /* text */, | |
| 542 pp::proxy::PPBFont_DrawTextAt_Params /* params */, | |
| 543 PP_Bool /* result */) | |
| 544 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiHostMsg_PPBFont_MeasureText, | |
| 545 pp::proxy::HostResource /* font */, | |
| 546 pp::proxy::SerializedVar /* text */, | |
| 547 PP_Bool /* text_is_rtl */, | |
| 548 PP_Bool /* override_direction */, | |
| 549 int32_t /* result */) | |
| 550 IPC_SYNC_MESSAGE_ROUTED5_1(PpapiHostMsg_PPBFont_CharacterOffsetForPixel, | |
| 551 pp::proxy::HostResource /* font */, | |
| 552 pp::proxy::SerializedVar /* text */, | |
| 553 PP_Bool /* text_is_rtl */, | |
| 554 PP_Bool /* override_direction */, | |
| 555 int32_t /* pixel_pos */, | |
| 556 uint32_t /* result */) | |
| 557 IPC_SYNC_MESSAGE_ROUTED5_1(PpapiHostMsg_PPBFont_PixelOffsetForCharacter, | |
| 558 pp::proxy::HostResource /* font */, | |
| 559 pp::proxy::SerializedVar /* text */, | |
| 560 PP_Bool /* text_is_rtl */, | |
| 561 PP_Bool /* override_direction */, | |
| 562 uint32_t /* char_offset */, | |
| 563 int32_t /* result */) | |
| 564 | |
| 565 // PPB_Fullscreen. | 532 // PPB_Fullscreen. |
| 566 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFullscreen_SetFullscreen, | 533 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFullscreen_SetFullscreen, |
| 567 PP_Instance /* instance */, | 534 PP_Instance /* instance */, |
| 568 PP_Bool /* fullscreen */, | 535 PP_Bool /* fullscreen */, |
| 569 PP_Bool /* result */) | 536 PP_Bool /* result */) |
| 570 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFullscreen_GetScreenSize, | 537 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFullscreen_GetScreenSize, |
| 571 PP_Instance /* instance */, | 538 PP_Instance /* instance */, |
| 572 PP_Bool /* result */, | 539 PP_Bool /* result */, |
| 573 PP_Size /* size */) | 540 PP_Size /* size */) |
| 574 | 541 |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 791 pp::proxy::HostResource /* result */) | 758 pp::proxy::HostResource /* result */) |
| 792 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData, | 759 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData, |
| 793 PP_Instance /* instance */, | 760 PP_Instance /* instance */, |
| 794 int32 /* format */, | 761 int32 /* format */, |
| 795 PP_Size /* size */, | 762 PP_Size /* size */, |
| 796 PP_Bool /* init_to_zero */, | 763 PP_Bool /* init_to_zero */, |
| 797 pp::proxy::HostResource /* result_resource */, | 764 pp::proxy::HostResource /* result_resource */, |
| 798 std::string /* image_data_desc */, | 765 std::string /* image_data_desc */, |
| 799 pp::proxy::ImageHandle /* result */) | 766 pp::proxy::ImageHandle /* result */) |
| 800 | 767 |
| OLD | NEW |