Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(503)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 10091003: Convert flash to thunk (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 877 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBInstance_GetFontFamilies, 888 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBInstance_GetFontFamilies,
889 std::string /* result */) 889 std::string /* result */)
890 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_SetFullscreen, 890 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_SetFullscreen,
891 PP_Instance /* instance */, 891 PP_Instance /* instance */,
892 PP_Bool /* fullscreen */, 892 PP_Bool /* fullscreen */,
893 PP_Bool /* result */) 893 PP_Bool /* result */)
894 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBInstance_GetScreenSize, 894 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBInstance_GetScreenSize,
895 PP_Instance /* instance */, 895 PP_Instance /* instance */,
896 PP_Bool /* result */, 896 PP_Bool /* result */,
897 PP_Size /* size */) 897 PP_Size /* size */)
898 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_FlashSetFullscreen,
899 PP_Instance /* instance */,
900 PP_Bool /* fullscreen */,
901 PP_Bool /* result */)
902 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBInstance_FlashGetScreenSize,
903 PP_Instance /* instance */,
904 PP_Bool /* result */,
905 PP_Size /* size */)
906 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_RequestInputEvents, 898 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_RequestInputEvents,
907 PP_Instance /* instance */, 899 PP_Instance /* instance */,
908 bool /* is_filtering */, 900 bool /* is_filtering */,
909 uint32_t /* event_classes */) 901 uint32_t /* event_classes */)
910 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_ClearInputEvents, 902 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_ClearInputEvents,
911 PP_Instance /* instance */, 903 PP_Instance /* instance */,
912 uint32_t /* event_classes */) 904 uint32_t /* event_classes */)
913 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_PostMessage, 905 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_PostMessage,
914 PP_Instance /* instance */, 906 PP_Instance /* instance */,
915 ppapi::proxy::SerializedVar /* message */) 907 ppapi::proxy::SerializedVar /* message */)
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop, 1151 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop,
1160 PP_Instance /* instance */) 1152 PP_Instance /* instance */)
1161 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetLocalTimeZoneOffset, 1153 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetLocalTimeZoneOffset,
1162 PP_Instance /* instance */, 1154 PP_Instance /* instance */,
1163 PP_Time /* t */, 1155 PP_Time /* t */,
1164 double /* offset */) 1156 double /* offset */)
1165 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_IsRectTopmost, 1157 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_IsRectTopmost,
1166 PP_Instance /* instance */, 1158 PP_Instance /* instance */,
1167 PP_Rect /* rect */, 1159 PP_Rect /* rect */,
1168 PP_Bool /* result */) 1160 PP_Bool /* result */)
1161 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_FlashSetFullscreen,
1162 PP_Instance /* instance */,
1163 PP_Bool /* fullscreen */,
1164 PP_Bool /* result */)
1165 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlash_FlashGetScreenSize,
1166 PP_Instance /* instance */,
1167 PP_Bool /* result */,
1168 PP_Size /* size */)
1169 1169
1170 // PPB_Flash_Clipboard. 1170 // PPB_Flash_Clipboard.
1171 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable, 1171 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable,
1172 PP_Instance /* instance */, 1172 PP_Instance /* instance */,
1173 int /* clipboard_type */, 1173 int /* clipboard_type */,
1174 int /* format */, 1174 int /* format */,
1175 bool /* result */) 1175 bool /* result */)
1176 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_ReadData, 1176 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_ReadData,
1177 PP_Instance /* instance */, 1177 PP_Instance /* instance */,
1178 int /* clipboard_type */, 1178 int /* clipboard_type */,
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1316 // PPB_X509Certificate_Private 1316 // PPB_X509Certificate_Private
1317 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, 1317 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER,
1318 std::vector<char> /* der */, 1318 std::vector<char> /* der */,
1319 bool /* succeeded */, 1319 bool /* succeeded */,
1320 ppapi::PPB_X509Certificate_Fields /* result */) 1320 ppapi::PPB_X509Certificate_Fields /* result */)
1321 1321
1322 // PPB_Font. 1322 // PPB_Font.
1323 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1323 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1324 std::string /* result */) 1324 std::string /* result */)
1325 #endif // !defined(OS_NACL) 1325 #endif // !defined(OS_NACL)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698