| 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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 bool /* clip_specified */, | 628 bool /* clip_specified */, |
| 629 PP_Rect /* clip */, | 629 PP_Rect /* clip */, |
| 630 PP_Point /* amount */) | 630 PP_Point /* amount */) |
| 631 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics2D_ReplaceContents, | 631 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics2D_ReplaceContents, |
| 632 pp::proxy::HostResource /* graphics_2d */, | 632 pp::proxy::HostResource /* graphics_2d */, |
| 633 pp::proxy::HostResource /* image_data */) | 633 pp::proxy::HostResource /* image_data */) |
| 634 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush, | 634 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush, |
| 635 pp::proxy::HostResource /* graphics_2d */) | 635 pp::proxy::HostResource /* graphics_2d */) |
| 636 | 636 |
| 637 // PPB_Graphics3D. | 637 // PPB_Graphics3D. |
| 638 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Create, | 638 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_Create, |
| 639 PP_Instance /* instance */, | 639 PP_Instance /* instance */, |
| 640 int32_t /* config */, | |
| 641 std::vector<int32_t> /* attrib_list */, | 640 std::vector<int32_t> /* attrib_list */, |
| 642 pp::proxy::HostResource /* result */) | 641 pp::proxy::HostResource /* result */) |
| 643 | 642 |
| 644 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer, | 643 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer, |
| 645 pp::proxy::HostResource /* context */, | 644 pp::proxy::HostResource /* context */, |
| 646 int32 /* size */, | 645 int32 /* size */, |
| 647 base::SharedMemoryHandle /* ring_buffer */) | 646 base::SharedMemoryHandle /* ring_buffer */) |
| 648 | 647 |
| 649 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_GetState, | 648 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_GetState, |
| 650 pp::proxy::HostResource /* context */, | 649 pp::proxy::HostResource /* context */, |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 894 PP_Bool /* is_always_opaque */, | 893 PP_Bool /* is_always_opaque */, |
| 895 pp::proxy::HostResource /* result */) | 894 pp::proxy::HostResource /* result */) |
| 896 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData, | 895 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData, |
| 897 PP_Instance /* instance */, | 896 PP_Instance /* instance */, |
| 898 int32 /* format */, | 897 int32 /* format */, |
| 899 PP_Size /* size */, | 898 PP_Size /* size */, |
| 900 PP_Bool /* init_to_zero */, | 899 PP_Bool /* init_to_zero */, |
| 901 pp::proxy::HostResource /* result_resource */, | 900 pp::proxy::HostResource /* result_resource */, |
| 902 std::string /* image_data_desc */, | 901 std::string /* image_data_desc */, |
| 903 pp::proxy::ImageHandle /* result */) | 902 pp::proxy::ImageHandle /* result */) |
| OLD | NEW |