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 1034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1045 ppapi::HostResource /* loader */) | 1045 ppapi::HostResource /* loader */) |
1046 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_GrantUniversalAccess, | 1046 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_GrantUniversalAccess, |
1047 ppapi::HostResource /* loader */) | 1047 ppapi::HostResource /* loader */) |
1048 | 1048 |
1049 // PPB_Var. | 1049 // PPB_Var. |
1050 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBVar_AddRefObject, | 1050 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBVar_AddRefObject, |
1051 int64 /* object_id */, | 1051 int64 /* object_id */, |
1052 int /* unused - need a return value for sync msgs */) | 1052 int /* unused - need a return value for sync msgs */) |
1053 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVar_ReleaseObject, | 1053 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVar_ReleaseObject, |
1054 int64 /* object_id */) | 1054 int64 /* object_id */) |
1055 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBVar_ConvertType, | |
1056 PP_Instance /* instance */, | |
1057 ppapi::proxy::SerializedVar /* var */, | |
1058 int /* new_type */, | |
1059 ppapi::proxy::SerializedVar /* exception */, | |
1060 ppapi::proxy::SerializedVar /* result */) | |
1061 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_HasProperty, | 1055 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_HasProperty, |
1062 ppapi::proxy::SerializedVar /* object */, | 1056 ppapi::proxy::SerializedVar /* object */, |
1063 ppapi::proxy::SerializedVar /* property */, | 1057 ppapi::proxy::SerializedVar /* property */, |
1064 ppapi::proxy::SerializedVar /* out_exception */, | 1058 ppapi::proxy::SerializedVar /* out_exception */, |
1065 PP_Bool /* result */) | 1059 PP_Bool /* result */) |
1066 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_HasMethodDeprecated, | 1060 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_HasMethodDeprecated, |
1067 ppapi::proxy::SerializedVar /* object */, | 1061 ppapi::proxy::SerializedVar /* object */, |
1068 ppapi::proxy::SerializedVar /* method */, | 1062 ppapi::proxy::SerializedVar /* method */, |
1069 ppapi::proxy::SerializedVar /* out_exception */, | 1063 ppapi::proxy::SerializedVar /* out_exception */, |
1070 PP_Bool /* result */) | 1064 PP_Bool /* result */) |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1737 std::vector<ppapi::HostResource> /* buffers */, | 1731 std::vector<ppapi::HostResource> /* buffers */, |
1738 uint32_t /* buffer_size */) | 1732 uint32_t /* buffer_size */) |
1739 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 1733 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
1740 uint32_t /* status */) | 1734 uint32_t /* status */) |
1741 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 1735 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
1742 uint32_t /* error */) | 1736 uint32_t /* error */) |
1743 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 1737 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
1744 uint32_t /* buffer */) | 1738 uint32_t /* buffer */) |
1745 | 1739 |
1746 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1740 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |