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

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

Issue 11421066: Refactor PPB_Flash_Fullscreen to the new resource model. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years 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/plugin_dispatcher.cc ('k') | ppapi/proxy/ppapi_proxy_test.cc » ('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 <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/file_path.h" 10 #include "base/file_path.h"
(...skipping 1292 matching lines...) Expand 10 before | Expand all | Expand 10 after
1303 PP_Bool /* from_user_action */, 1303 PP_Bool /* from_user_action */,
1304 int32_t /* result */) 1304 int32_t /* result */)
1305 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetLocalTimeZoneOffset, 1305 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetLocalTimeZoneOffset,
1306 PP_Instance /* instance */, 1306 PP_Instance /* instance */,
1307 PP_Time /* t */, 1307 PP_Time /* t */,
1308 double /* offset */) 1308 double /* offset */)
1309 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_IsRectTopmost, 1309 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_IsRectTopmost,
1310 PP_Instance /* instance */, 1310 PP_Instance /* instance */,
1311 PP_Rect /* rect */, 1311 PP_Rect /* rect */,
1312 PP_Bool /* result */) 1312 PP_Bool /* result */)
1313 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_FlashSetFullscreen,
1314 PP_Instance /* instance */,
1315 PP_Bool /* fullscreen */,
1316 PP_Bool /* result */)
1317 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlash_FlashGetScreenSize,
1318 PP_Instance /* instance */,
1319 PP_Bool /* result */,
1320 PP_Size /* size */)
1321 IPC_MESSAGE_ROUTED0(PpapiHostMsg_PPBFlash_UpdateActivity) 1313 IPC_MESSAGE_ROUTED0(PpapiHostMsg_PPBFlash_UpdateActivity)
1322 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenFileRef, 1314 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenFileRef,
1323 PP_Instance /* instance */, 1315 PP_Instance /* instance */,
1324 ppapi::HostResource /* file_ref */, 1316 ppapi::HostResource /* file_ref */,
1325 int32_t /* mode */, 1317 int32_t /* mode */,
1326 IPC::PlatformFileForTransit /* file_handle */, 1318 IPC::PlatformFileForTransit /* file_handle */,
1327 int32_t /* result */) 1319 int32_t /* result */)
1328 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryFileRef, 1320 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryFileRef,
1329 PP_Instance /* instance */, 1321 PP_Instance /* instance */,
1330 ppapi::HostResource /* file_ref */, 1322 ppapi::HostResource /* file_ref */,
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
1628 1620
1629 // Flash font file. 1621 // Flash font file.
1630 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFontFile_Create, 1622 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFontFile_Create,
1631 ppapi::proxy::SerializedFontDescription /* description */, 1623 ppapi::proxy::SerializedFontDescription /* description */,
1632 PP_PrivateFontCharset /* charset */) 1624 PP_PrivateFontCharset /* charset */)
1633 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFontFile_GetFontTable, 1625 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFontFile_GetFontTable,
1634 uint32_t /* table */) 1626 uint32_t /* table */)
1635 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFontFile_GetFontTableReply, 1627 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFontFile_GetFontTableReply,
1636 std::string /* output */) 1628 std::string /* output */)
1637 1629
1630 // Flash fullscreen.
1631 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFullscreen_Create)
1632 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFullscreen_SetFullscreen,
1633 bool /* fullscreen */)
1634
1638 // FlashMenu ------------------------------------------------------------------ 1635 // FlashMenu ------------------------------------------------------------------
1639 1636
1640 // Creates the flash menu with the given data. 1637 // Creates the flash menu with the given data.
1641 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashMenu_Create, 1638 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashMenu_Create,
1642 ppapi::proxy::SerializedFlashMenu /* menu_data */) 1639 ppapi::proxy::SerializedFlashMenu /* menu_data */)
1643 1640
1644 // Shows the menu at the given location relative to the plugin instance. 1641 // Shows the menu at the given location relative to the plugin instance.
1645 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashMenu_Show, 1642 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashMenu_Show,
1646 PP_Point /* location */) 1643 PP_Point /* location */)
1647 1644
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1689 std::vector<ppapi::HostResource> /* buffers */, 1686 std::vector<ppapi::HostResource> /* buffers */,
1690 uint32_t /* buffer_size */) 1687 uint32_t /* buffer_size */)
1691 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 1688 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
1692 uint32_t /* status */) 1689 uint32_t /* status */)
1693 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 1690 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
1694 uint32_t /* error */) 1691 uint32_t /* error */)
1695 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 1692 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
1696 uint32_t /* buffer */) 1693 uint32_t /* buffer */)
1697 1694
1698 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1695 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/plugin_dispatcher.cc ('k') | ppapi/proxy/ppapi_proxy_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698