| 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 <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 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 std::string /* image_data_desc */, | 936 std::string /* image_data_desc */, |
| 937 ppapi::proxy::SerializedHandle /* result */) | 937 ppapi::proxy::SerializedHandle /* result */) |
| 938 | 938 |
| 939 // PPB_Instance. | 939 // PPB_Instance. |
| 940 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject, | 940 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject, |
| 941 PP_Instance /* instance */, | 941 PP_Instance /* instance */, |
| 942 ppapi::proxy::SerializedVar /* result */) | 942 ppapi::proxy::SerializedVar /* result */) |
| 943 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject, | 943 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject, |
| 944 PP_Instance /* instance */, | 944 PP_Instance /* instance */, |
| 945 ppapi::proxy::SerializedVar /* result */) | 945 ppapi::proxy::SerializedVar /* result */) |
| 946 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_BindGraphics, | 946 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_BindGraphics, |
| 947 PP_Instance /* instance */, | 947 PP_Instance /* instance */, |
| 948 PP_Resource /* device */, | 948 PP_Resource /* device */) |
| 949 PP_Bool /* result */) | |
| 950 IPC_SYNC_MESSAGE_ROUTED1_1( | 949 IPC_SYNC_MESSAGE_ROUTED1_1( |
| 951 PpapiHostMsg_PPBInstance_GetAudioHardwareOutputSampleRate, | 950 PpapiHostMsg_PPBInstance_GetAudioHardwareOutputSampleRate, |
| 952 PP_Instance /* instance */, | 951 PP_Instance /* instance */, |
| 953 uint32_t /* result */) | 952 uint32_t /* result */) |
| 954 IPC_SYNC_MESSAGE_ROUTED1_1( | 953 IPC_SYNC_MESSAGE_ROUTED1_1( |
| 955 PpapiHostMsg_PPBInstance_GetAudioHardwareOutputBufferSize, | 954 PpapiHostMsg_PPBInstance_GetAudioHardwareOutputBufferSize, |
| 956 PP_Instance /* instance */, | 955 PP_Instance /* instance */, |
| 957 uint32_t /* result */) | 956 uint32_t /* result */) |
| 958 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_IsFullFrame, | 957 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_IsFullFrame, |
| 959 PP_Instance /* instance */, | 958 PP_Instance /* instance */, |
| (...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1687 std::vector<ppapi::HostResource> /* buffers */, | 1686 std::vector<ppapi::HostResource> /* buffers */, |
| 1688 uint32_t /* buffer_size */) | 1687 uint32_t /* buffer_size */) |
| 1689 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 1688 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
| 1690 uint32_t /* status */) | 1689 uint32_t /* status */) |
| 1691 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 1690 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
| 1692 uint32_t /* error */) | 1691 uint32_t /* error */) |
| 1693 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 1692 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
| 1694 uint32_t /* buffer */) | 1693 uint32_t /* buffer */) |
| 1695 | 1694 |
| 1696 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1695 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |