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

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

Issue 26564009: [PPAPI] It is now possible to pass filesystems from JavaScript to NaCl modules. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 2 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
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/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after
1287 1287
1288 // FileSystem 1288 // FileSystem
1289 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Create, 1289 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Create,
1290 PP_FileSystemType /* type */) 1290 PP_FileSystemType /* type */)
1291 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Open, 1291 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Open,
1292 int64_t /* expected_size */) 1292 int64_t /* expected_size */)
1293 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_OpenReply) 1293 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_OpenReply)
1294 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_InitIsolatedFileSystem, 1294 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_InitIsolatedFileSystem,
1295 std::string /* fsid */) 1295 std::string /* fsid */)
1296 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_InitIsolatedFileSystemReply) 1296 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_InitIsolatedFileSystemReply)
1297 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileSystem_CreateFromRenderer,
1298 std::string /* root_url */,
1299 PP_FileSystemType /* file_system_type */)
1300 // Nested within a ResourceVar for file systems being passed from the renderer
1301 // to the plugin.
1302 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileSystem_CreateFromPendingHost,
1303 PP_FileSystemType /* file_system_type */)
raymes 2013/10/11 04:02:24 Could you fully document both of these? In particu
Matt Giuca 2013/10/17 09:17:58 Done.
1297 1304
1298 // Flash DRM ------------------------------------------------------------------ 1305 // Flash DRM ------------------------------------------------------------------
1299 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_Create) 1306 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_Create)
1300 1307
1301 // Requests the device ID. 1308 // Requests the device ID.
1302 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_GetDeviceID) 1309 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_GetDeviceID)
1303 // Reply for GetDeviceID which includes the device ID as a string. 1310 // Reply for GetDeviceID which includes the device ID as a string.
1304 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDRM_GetDeviceIDReply, 1311 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDRM_GetDeviceIDReply,
1305 std::string /* id */) 1312 std::string /* id */)
1306 1313
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
1963 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 1970 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
1964 PP_TalkPermission /* permission */) 1971 PP_TalkPermission /* permission */)
1965 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 1972 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
1966 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 1973 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
1967 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 1974 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
1968 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 1975 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
1969 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 1976 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
1970 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 1977 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
1971 1978
1972 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1979 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698