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

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: traits Created 7 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
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 1326 matching lines...) Expand 10 before | Expand all | Expand 10 after
1337 // Starts an extension API request which expects a response sent back using a 1337 // Starts an extension API request which expects a response sent back using a
1338 // PpapiPluginMsg_ExtensionsCommon_CallReply message. 1338 // PpapiPluginMsg_ExtensionsCommon_CallReply message.
1339 // |request_name| is an API function name. |args| is a list of input arguments. 1339 // |request_name| is an API function name. |args| is a list of input arguments.
1340 // |output| is a list of output results. 1340 // |output| is a list of output results.
1341 IPC_MESSAGE_CONTROL2(PpapiHostMsg_ExtensionsCommon_Call, 1341 IPC_MESSAGE_CONTROL2(PpapiHostMsg_ExtensionsCommon_Call,
1342 std::string /* request_name */, 1342 std::string /* request_name */,
1343 base::ListValue /* args */) 1343 base::ListValue /* args */)
1344 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ExtensionsCommon_CallReply, 1344 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ExtensionsCommon_CallReply,
1345 base::ListValue /* output */) 1345 base::ListValue /* output */)
1346 1346
1347 // Ext_CrxFileSystem
1348 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Ext_CrxFileSystem_Create)
1349 IPC_MESSAGE_CONTROL0(PpapiBrowserHostMsg_Ext_CrxFileSystem_Open)
1350 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_Ext_CrxFileSystem_BrowserOpenReply,
1351 std::string /* extension_id */,
1352 std::string /* fsid */)
1353 IPC_MESSAGE_CONTROL2(PpapiRendererHostMsg_Ext_CrxFileSystem_Open,
1354 std::string /* extension_id */,
1355 std::string /* fsid */)
1356 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Ext_CrxFileSystem_RendererOpenReply)
1357
1347 // File chooser. 1358 // File chooser.
1348 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) 1359 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create)
1349 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, 1360 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show,
1350 bool /* save_as */, 1361 bool /* save_as */,
1351 bool /* open_multiple */, 1362 bool /* open_multiple */,
1352 std::string /* suggested_file_name */, 1363 std::string /* suggested_file_name */,
1353 std::vector<std::string> /* accept_mime_types */) 1364 std::vector<std::string> /* accept_mime_types */)
1354 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, 1365 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply,
1355 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) 1366 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */)
1356 1367
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
1818 std::vector<ppapi::HostResource> /* buffers */, 1829 std::vector<ppapi::HostResource> /* buffers */,
1819 uint32_t /* buffer_size */) 1830 uint32_t /* buffer_size */)
1820 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 1831 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
1821 uint32_t /* status */) 1832 uint32_t /* status */)
1822 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 1833 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
1823 uint32_t /* error */) 1834 uint32_t /* error */)
1824 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 1835 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
1825 uint32_t /* buffer */) 1836 uint32_t /* buffer */)
1826 1837
1827 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1838 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698