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

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

Issue 324983005: [PPAPI] Add browser tests for compositor API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@compositor_api_impl_new
Patch Set: Remove change in base folder. Created 6 years, 6 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 <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 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after
1332 int32_t /* boundary_value */) 1332 int32_t /* boundary_value */)
1333 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UMA_IsCrashReportingEnabled); 1333 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UMA_IsCrashReportingEnabled);
1334 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_UMA_IsCrashReportingEnabledReply); 1334 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_UMA_IsCrashReportingEnabledReply);
1335 1335
1336 // Compositor 1336 // Compositor
1337 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Compositor_Create) 1337 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Compositor_Create)
1338 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Compositor_CommitLayers, 1338 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Compositor_CommitLayers,
1339 std::vector<ppapi::CompositorLayerData> /* layers */, 1339 std::vector<ppapi::CompositorLayerData> /* layers */,
1340 bool /* reset */) 1340 bool /* reset */)
1341 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Compositor_CommitLayersReply) 1341 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Compositor_CommitLayersReply)
1342 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Compositor_Release)
1342 IPC_MESSAGE_CONTROL3(PpapiPluginMsg_Compositor_ReleaseResource, 1343 IPC_MESSAGE_CONTROL3(PpapiPluginMsg_Compositor_ReleaseResource,
1343 int32_t /* id */, 1344 int32_t /* id */,
1344 uint32_t /* sync_point */, 1345 uint32_t /* sync_point */,
1345 bool /* is_lost */) 1346 bool /* is_lost */)
1346 1347
1347 // File chooser. 1348 // File chooser.
1348 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) 1349 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create)
1349 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, 1350 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show,
1350 bool /* save_as */, 1351 bool /* save_as */,
1351 bool /* open_multiple */, 1352 bool /* open_multiple */,
(...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after
2232 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2233 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2233 PP_TalkPermission /* permission */) 2234 PP_TalkPermission /* permission */)
2234 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2235 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2235 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2236 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2236 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2237 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2237 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2238 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2238 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2239 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2239 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2240 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2240 2241
2241 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2242 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698