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

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

Issue 26803004: PPAPI: Add PluginPrivateFileSystem (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after
1284 1284
1285 // FileSystem 1285 // FileSystem
1286 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Create, 1286 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Create,
1287 PP_FileSystemType /* type */) 1287 PP_FileSystemType /* type */)
1288 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Open, 1288 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Open,
1289 int64_t /* expected_size */) 1289 int64_t /* expected_size */)
1290 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_OpenReply) 1290 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_OpenReply)
1291 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_InitIsolatedFileSystem, 1291 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_InitIsolatedFileSystem,
1292 std::string /* fsid */) 1292 std::string /* fsid */)
1293 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_InitIsolatedFileSystemReply) 1293 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_InitIsolatedFileSystemReply)
1294 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileSystem_OpenPluginPrivateFileSystem)
1295 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileSystem_OpenPluginPrivateFileSystemReply,
1296 std::string /* fsid */)
1297 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_InitPluginPrivateFileSystem,
1298 std::string /* fsid */)
1299 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_InitPluginPrivateFileSystemReply)
1294 1300
1295 // Flash DRM ------------------------------------------------------------------ 1301 // Flash DRM ------------------------------------------------------------------
1296 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_Create) 1302 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_Create)
1297 1303
1298 // Requests the device ID. 1304 // Requests the device ID.
1299 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_GetDeviceID) 1305 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_GetDeviceID)
1300 // Reply for GetDeviceID which includes the device ID as a string. 1306 // Reply for GetDeviceID which includes the device ID as a string.
1301 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDRM_GetDeviceIDReply, 1307 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDRM_GetDeviceIDReply,
1302 std::string /* id */) 1308 std::string /* id */)
1303 1309
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after
1956 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 1962 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
1957 PP_TalkPermission /* permission */) 1963 PP_TalkPermission /* permission */)
1958 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 1964 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
1959 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 1965 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
1960 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 1966 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
1961 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 1967 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
1962 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 1968 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
1963 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 1969 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
1964 1970
1965 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1971 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698