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

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

Issue 475123003: [PPAPI] Add target param for CompositorLayer::SetTexture(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review issues Created 6 years, 4 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
« no previous file with comments | « ppapi/proxy/compositor_layer_resource.cc ('k') | ppapi/shared_impl/compositor_layer_data.h » ('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 <map> 6 #include <map>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 IPC_STRUCT_TRAITS_MEMBER(alpha) 257 IPC_STRUCT_TRAITS_MEMBER(alpha)
258 IPC_STRUCT_TRAITS_END() 258 IPC_STRUCT_TRAITS_END()
259 259
260 IPC_STRUCT_TRAITS_BEGIN(ppapi::CompositorLayerData::ImageLayer) 260 IPC_STRUCT_TRAITS_BEGIN(ppapi::CompositorLayerData::ImageLayer)
261 IPC_STRUCT_TRAITS_MEMBER(resource) 261 IPC_STRUCT_TRAITS_MEMBER(resource)
262 IPC_STRUCT_TRAITS_MEMBER(source_rect) 262 IPC_STRUCT_TRAITS_MEMBER(source_rect)
263 IPC_STRUCT_TRAITS_END() 263 IPC_STRUCT_TRAITS_END()
264 264
265 IPC_STRUCT_TRAITS_BEGIN(ppapi::CompositorLayerData::TextureLayer) 265 IPC_STRUCT_TRAITS_BEGIN(ppapi::CompositorLayerData::TextureLayer)
266 IPC_STRUCT_TRAITS_MEMBER(mailbox) 266 IPC_STRUCT_TRAITS_MEMBER(mailbox)
267 IPC_STRUCT_TRAITS_MEMBER(target)
267 IPC_STRUCT_TRAITS_MEMBER(sync_point) 268 IPC_STRUCT_TRAITS_MEMBER(sync_point)
268 IPC_STRUCT_TRAITS_MEMBER(source_rect) 269 IPC_STRUCT_TRAITS_MEMBER(source_rect)
269 IPC_STRUCT_TRAITS_MEMBER(premult_alpha) 270 IPC_STRUCT_TRAITS_MEMBER(premult_alpha)
270 IPC_STRUCT_TRAITS_END() 271 IPC_STRUCT_TRAITS_END()
271 272
272 IPC_STRUCT_TRAITS_BEGIN(ppapi::DeviceRefData) 273 IPC_STRUCT_TRAITS_BEGIN(ppapi::DeviceRefData)
273 IPC_STRUCT_TRAITS_MEMBER(type) 274 IPC_STRUCT_TRAITS_MEMBER(type)
274 IPC_STRUCT_TRAITS_MEMBER(name) 275 IPC_STRUCT_TRAITS_MEMBER(name)
275 IPC_STRUCT_TRAITS_MEMBER(id) 276 IPC_STRUCT_TRAITS_MEMBER(id)
276 IPC_STRUCT_TRAITS_END() 277 IPC_STRUCT_TRAITS_END()
(...skipping 1962 matching lines...) Expand 10 before | Expand all | Expand 10 after
2239 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2240 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2240 PP_TalkPermission /* permission */) 2241 PP_TalkPermission /* permission */)
2241 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2242 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2242 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2243 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2243 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2244 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2244 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2245 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2245 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2246 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2246 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2247 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2247 2248
2248 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2249 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/compositor_layer_resource.cc ('k') | ppapi/shared_impl/compositor_layer_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698