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

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

Issue 15039009: Add PPAPI tests for VideoSource and VideoDestination resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix proxy so basic tests pass. 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 | 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 1844 matching lines...) Expand 10 before | Expand all | Expand 10 after
1855 ppapi::HostResource /* image_data */, 1855 ppapi::HostResource /* image_data */,
1856 PP_TimeTicks /* timestamp */) 1856 PP_TimeTicks /* timestamp */)
1857 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDestination_Close) 1857 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDestination_Close)
1858 1858
1859 // VideoSource Private. 1859 // VideoSource Private.
1860 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Create) 1860 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Create)
1861 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoSource_Open, 1861 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoSource_Open,
1862 std::string /* stream_url */) 1862 std::string /* stream_url */)
1863 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) 1863 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply)
1864 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) 1864 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame)
1865 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_VideoSource_GetFrameReply, 1865 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoSource_GetFrameReply,
1866 ppapi::HostResource /* image_data */, 1866 ppapi::HostResource /* resource_id */,
1867 std::string /* image_data_desc */,
bbudge 2013/05/09 21:40:25 We're using string to marshal a C struct from the
1868 int /* fd */,
1867 PP_TimeTicks /* timestamp */) 1869 PP_TimeTicks /* timestamp */)
1868 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) 1870 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close)
1869 1871
1870 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1872 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698