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

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

Issue 9369003: Pepper: Add a function to PPB_Flash to check if a rect is topmost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add stubs for InvokePrinting() and UpdateActivity() Created 8 years, 10 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/interface_list.cc ('k') | ppapi/proxy/ppb_flash_proxy.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 <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 683 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 PP_Bool /* from_user_action */, 694 PP_Bool /* from_user_action */,
695 int32_t /* result */) 695 int32_t /* result */)
696 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop, 696 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop,
697 PP_Instance /* instance */) 697 PP_Instance /* instance */)
698 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop, 698 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop,
699 PP_Instance /* instance */) 699 PP_Instance /* instance */)
700 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetLocalTimeZoneOffset, 700 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetLocalTimeZoneOffset,
701 PP_Instance /* instance */, 701 PP_Instance /* instance */,
702 PP_Time /* t */, 702 PP_Time /* t */,
703 double /* offset */) 703 double /* offset */)
704 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_IsRectTopmost,
705 PP_Instance /* instance */,
706 PP_Rect /* rect */,
707 PP_Bool /* result */)
704 708
705 // PPB_Flash_Clipboard. 709 // PPB_Flash_Clipboard.
706 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable, 710 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable,
707 PP_Instance /* instance */, 711 PP_Instance /* instance */,
708 int /* clipboard_type */, 712 int /* clipboard_type */,
709 int /* format */, 713 int /* format */,
710 bool /* result */) 714 bool /* result */)
711 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText, 715 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText,
712 PP_Instance /* instance */, 716 PP_Instance /* instance */,
713 int /* clipboard_type */, 717 int /* clipboard_type */,
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
1158 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1162 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1159 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1163 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1160 ppapi::HostResource /* video_decoder */, 1164 ppapi::HostResource /* video_decoder */,
1161 int32_t /* picture buffer id */) 1165 int32_t /* picture buffer id */)
1162 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1166 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1163 ppapi::HostResource /* video_decoder */) 1167 ppapi::HostResource /* video_decoder */)
1164 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1168 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1165 ppapi::HostResource /* video_decoder */) 1169 ppapi::HostResource /* video_decoder */)
1166 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1170 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1167 ppapi::HostResource /* video_decoder */) 1171 ppapi::HostResource /* video_decoder */)
OLDNEW
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppb_flash_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698