| 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 // Multiply-included message header, no traditional include guard. |     5 // Multiply-included message header, no traditional include guard. | 
|     6 #include <map> |     6 #include <map> | 
|     7 #include <string> |     7 #include <string> | 
|     8 #include <vector> |     8 #include <vector> | 
|     9  |     9  | 
|    10 #include "base/basictypes.h" |    10 #include "base/basictypes.h" | 
| (...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   890                     ppapi::HostResource /* audio_id */, |   890                     ppapi::HostResource /* audio_id */, | 
|   891                     bool /* play */) |   891                     bool /* play */) | 
|   892  |   892  | 
|   893 // PPB_Core. |   893 // PPB_Core. | 
|   894 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, |   894 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, | 
|   895                     ppapi::HostResource) |   895                     ppapi::HostResource) | 
|   896 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, |   896 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, | 
|   897                     ppapi::HostResource) |   897                     ppapi::HostResource) | 
|   898  |   898  | 
|   899 // PPB_Graphics3D. |   899 // PPB_Graphics3D. | 
|   900 IPC_SYNC_MESSAGE_ROUTED3_3(PpapiHostMsg_PPBGraphics3D_Create, |   900 IPC_SYNC_MESSAGE_ROUTED3_4(PpapiHostMsg_PPBGraphics3D_Create, | 
|   901                            PP_Instance /* instance */, |   901                            PP_Instance /* instance */, | 
|   902                            ppapi::HostResource /* share_context */, |   902                            ppapi::HostResource /* share_context */, | 
|   903                            std::vector<int32_t> /* attrib_list */, |   903                            std::vector<int32_t> /* attrib_list */, | 
|   904                            ppapi::HostResource /* result */, |   904                            ppapi::HostResource /* result */, | 
|   905                            gpu::Capabilities /* capabilities */, |   905                            gpu::Capabilities /* capabilities */, | 
|   906                            ppapi::proxy::SerializedHandle /* shared_state */) |   906                            ppapi::proxy::SerializedHandle /* shared_state */, | 
 |   907                            uint64_t /* command_buffer_id */) | 
|   907 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, |   908 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, | 
|   908                            ppapi::HostResource /* context */, |   909                            ppapi::HostResource /* context */, | 
|   909                            int32 /* transfer_buffer_id */) |   910                            int32 /* transfer_buffer_id */) | 
|   910 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange, |   911 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange, | 
|   911                            ppapi::HostResource /* context */, |   912                            ppapi::HostResource /* context */, | 
|   912                            int32 /* start */, |   913                            int32 /* start */, | 
|   913                            int32 /* end */, |   914                            int32 /* end */, | 
|   914                            gpu::CommandBuffer::State /* state */, |   915                            gpu::CommandBuffer::State /* state */, | 
|   915                            bool /* success */) |   916                            bool /* success */) | 
|   916 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, |   917 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, | 
| (...skipping 1416 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  2333                      std::vector<ppapi::HostResource> /* buffers */, |  2334                      std::vector<ppapi::HostResource> /* buffers */, | 
|  2334                      uint32_t /* buffer_size */) |  2335                      uint32_t /* buffer_size */) | 
|  2335 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |  2336 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 
|  2336                      uint32_t /* status */) |  2337                      uint32_t /* status */) | 
|  2337 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |  2338 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 
|  2338                      uint32_t /* error */) |  2339                      uint32_t /* error */) | 
|  2339 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |  2340 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 
|  2340                      uint32_t /* buffer */) |  2341                      uint32_t /* buffer */) | 
|  2341  |  2342  | 
|  2342 #endif  // !defined(OS_NACL) && !defined(NACL_WIN64) |  2343 #endif  // !defined(OS_NACL) && !defined(NACL_WIN64) | 
| OLD | NEW |