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

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

Issue 13032002: Add RequestOSFileHandle as a private PPAPI (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: addressed comments Created 7 years, 9 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 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1364 std::string /* data */) 1364 std::string /* data */)
1365 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileIO_SetLength, 1365 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileIO_SetLength,
1366 int64_t /* length */) 1366 int64_t /* length */)
1367 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileIO_Flush) 1367 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileIO_Flush)
1368 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileIO_WillWrite, 1368 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileIO_WillWrite,
1369 int64_t /* offset */, 1369 int64_t /* offset */,
1370 int32_t /* bytes_to_write */) 1370 int32_t /* bytes_to_write */)
1371 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileIO_WillSetLength, 1371 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileIO_WillSetLength,
1372 int64_t /* length */) 1372 int64_t /* length */)
1373 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileIO_GetOSFileDescriptor) 1373 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileIO_GetOSFileDescriptor)
1374 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileIO_GetOSFileDescriptorReply, 1374 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileIO_GetOSFileDescriptorReply)
1375 int32_t /* file descriptor */)
1376 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileIO_GeneralReply) 1375 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileIO_GeneralReply)
1377 1376
1378 // Flash device ID. 1377 // Flash device ID.
1379 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_Create) 1378 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_Create)
1380 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_GetDeviceID) 1379 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_GetDeviceID)
1381 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDeviceID_GetDeviceIDReply, 1380 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDeviceID_GetDeviceIDReply,
1382 std::string /* id */) 1381 std::string /* id */)
1383 1382
1384 // Gamepad. 1383 // Gamepad.
1385 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create) 1384 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create)
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
1747 std::vector<ppapi::HostResource> /* buffers */, 1746 std::vector<ppapi::HostResource> /* buffers */,
1748 uint32_t /* buffer_size */) 1747 uint32_t /* buffer_size */)
1749 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 1748 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
1750 uint32_t /* status */) 1749 uint32_t /* status */)
1751 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 1750 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
1752 uint32_t /* error */) 1751 uint32_t /* error */)
1753 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 1752 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
1754 uint32_t /* buffer */) 1753 uint32_t /* buffer */)
1755 1754
1756 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1755 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698