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

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

Issue 10342013: Generate and connect a Pepper identifier for Chrome OS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup as per brettw; move to serializedreturnvar in the host msg bounce step Created 8 years, 7 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 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after
1169 PP_Bool /* result */) 1169 PP_Bool /* result */)
1170 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_FlashSetFullscreen, 1170 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_FlashSetFullscreen,
1171 PP_Instance /* instance */, 1171 PP_Instance /* instance */,
1172 PP_Bool /* fullscreen */, 1172 PP_Bool /* fullscreen */,
1173 PP_Bool /* result */) 1173 PP_Bool /* result */)
1174 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlash_FlashGetScreenSize, 1174 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlash_FlashGetScreenSize,
1175 PP_Instance /* instance */, 1175 PP_Instance /* instance */,
1176 PP_Bool /* result */, 1176 PP_Bool /* result */,
1177 PP_Size /* size */) 1177 PP_Size /* size */)
1178 IPC_MESSAGE_ROUTED0(PpapiHostMsg_PPBFlash_UpdateActivity) 1178 IPC_MESSAGE_ROUTED0(PpapiHostMsg_PPBFlash_UpdateActivity)
1179 IPC_SYNC_MESSAGE_ROUTED0_1(PpapiHostMsg_PPBFlash_GetDeviceID, 1179 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlash_GetDeviceID,
1180 std::string /* id */) 1180 PP_Instance /* instance */,
1181 ppapi::proxy::SerializedVar /* id */)
1181 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_IsClipboardFormatAvailable, 1182 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_IsClipboardFormatAvailable,
1182 PP_Instance /* instance */, 1183 PP_Instance /* instance */,
1183 int /* clipboard_type */, 1184 int /* clipboard_type */,
1184 int /* format */, 1185 int /* format */,
1185 bool /* result */) 1186 bool /* result */)
1186 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_ReadClipboardData, 1187 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_ReadClipboardData,
1187 PP_Instance /* instance */, 1188 PP_Instance /* instance */,
1188 int /* clipboard_type */, 1189 int /* clipboard_type */,
1189 int /* format */, 1190 int /* format */,
1190 ppapi::proxy::SerializedVar /* result */) 1191 ppapi::proxy::SerializedVar /* result */)
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
1324 // PPB_X509Certificate_Private 1325 // PPB_X509Certificate_Private
1325 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, 1326 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER,
1326 std::vector<char> /* der */, 1327 std::vector<char> /* der */,
1327 bool /* succeeded */, 1328 bool /* succeeded */,
1328 ppapi::PPB_X509Certificate_Fields /* result */) 1329 ppapi::PPB_X509Certificate_Fields /* result */)
1329 1330
1330 // PPB_Font. 1331 // PPB_Font.
1331 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1332 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1332 std::string /* result */) 1333 std::string /* result */)
1333 #endif // !defined(OS_NACL) 1334 #endif // !defined(OS_NACL)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698