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

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

Issue 14188019: CRX FileSystem Pepper private API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppapi_param_traits.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after
1352 // Starts an extension API request which expects a response sent back using a 1352 // Starts an extension API request which expects a response sent back using a
1353 // PpapiPluginMsg_ExtensionsCommon_CallReply message. 1353 // PpapiPluginMsg_ExtensionsCommon_CallReply message.
1354 // |request_name| is an API function name. |args| is a list of input arguments. 1354 // |request_name| is an API function name. |args| is a list of input arguments.
1355 // |output| is a list of output results. 1355 // |output| is a list of output results.
1356 IPC_MESSAGE_CONTROL2(PpapiHostMsg_ExtensionsCommon_Call, 1356 IPC_MESSAGE_CONTROL2(PpapiHostMsg_ExtensionsCommon_Call,
1357 std::string /* request_name */, 1357 std::string /* request_name */,
1358 base::ListValue /* args */) 1358 base::ListValue /* args */)
1359 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ExtensionsCommon_CallReply, 1359 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ExtensionsCommon_CallReply,
1360 base::ListValue /* output */) 1360 base::ListValue /* output */)
1361 1361
1362 // Ext_CrxFileSystem
1363 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Ext_CrxFileSystem_Create)
1364 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Ext_CrxFileSystem_BrowserOpen)
1365 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Ext_CrxFileSystem_BrowserOpenReply,
1366 std::string /* fsid */)
1367
1362 // File chooser. 1368 // File chooser.
1363 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) 1369 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create)
1364 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, 1370 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show,
1365 bool /* save_as */, 1371 bool /* save_as */,
1366 bool /* open_multiple */, 1372 bool /* open_multiple */,
1367 std::string /* suggested_file_name */, 1373 std::string /* suggested_file_name */,
1368 std::vector<std::string> /* accept_mime_types */) 1374 std::vector<std::string> /* accept_mime_types */)
1369 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, 1375 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply,
1370 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) 1376 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */)
1371 1377
(...skipping 30 matching lines...) Expand all
1402 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileIO_RequestOSFileHandle) 1408 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileIO_RequestOSFileHandle)
1403 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileIO_RequestOSFileHandleReply) 1409 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileIO_RequestOSFileHandleReply)
1404 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileIO_GeneralReply) 1410 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileIO_GeneralReply)
1405 1411
1406 // FileSystem 1412 // FileSystem
1407 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Create, 1413 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Create,
1408 PP_FileSystemType /* type */) 1414 PP_FileSystemType /* type */)
1409 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Open, 1415 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Open,
1410 int64_t /* expected_size */) 1416 int64_t /* expected_size */)
1411 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_OpenReply) 1417 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_OpenReply)
1418 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_InitIsolatedFileSystem,
1419 std::string /* fsid */)
1412 1420
1413 // Flash device ID. 1421 // Flash device ID.
1414 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_Create) 1422 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_Create)
1415 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_GetDeviceID) 1423 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_GetDeviceID)
1416 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDeviceID_GetDeviceIDReply, 1424 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDeviceID_GetDeviceIDReply,
1417 std::string /* id */) 1425 std::string /* id */)
1418 1426
1419 // Gamepad. 1427 // Gamepad.
1420 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create) 1428 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create)
1421 1429
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
1861 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoSource_Open, 1869 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoSource_Open,
1862 std::string /* stream_url */) 1870 std::string /* stream_url */)
1863 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) 1871 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply)
1864 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) 1872 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame)
1865 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_VideoSource_GetFrameReply, 1873 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_VideoSource_GetFrameReply,
1866 ppapi::HostResource /* image_data */, 1874 ppapi::HostResource /* image_data */,
1867 PP_TimeTicks /* timestamp */) 1875 PP_TimeTicks /* timestamp */)
1868 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) 1876 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close)
1869 1877
1870 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1878 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppapi_param_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698