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

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

Issue 9360045: Rename PPB_Font to PPB_BrowserFont_Trusted. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: REQUIRED CHANGELIST DESCRIPTIONS ARE A WASTE OF TIME 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
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 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBUDPSocket_RecvFrom, 824 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBUDPSocket_RecvFrom,
825 uint32 /* socket_id */, 825 uint32 /* socket_id */,
826 int32_t /* num_bytes */) 826 int32_t /* num_bytes */)
827 IPC_MESSAGE_CONTROL3(PpapiHostMsg_PPBUDPSocket_SendTo, 827 IPC_MESSAGE_CONTROL3(PpapiHostMsg_PPBUDPSocket_SendTo,
828 uint32 /* socket_id */, 828 uint32 /* socket_id */,
829 std::string /* data */, 829 std::string /* data */,
830 PP_NetAddress_Private /* net_addr */) 830 PP_NetAddress_Private /* net_addr */)
831 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBUDPSocket_Close, 831 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBUDPSocket_Close,
832 uint32 /* socket_id */) 832 uint32 /* socket_id */)
833 833
834 // PPB_Font.
835 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
836 std::string /* result */)
837
838 // PPB_Graphics2D. 834 // PPB_Graphics2D.
839 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics2D_Create, 835 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics2D_Create,
840 PP_Instance /* instance */, 836 PP_Instance /* instance */,
841 PP_Size /* size */, 837 PP_Size /* size */,
842 PP_Bool /* is_always_opaque */, 838 PP_Bool /* is_always_opaque */,
843 ppapi::HostResource /* result */) 839 ppapi::HostResource /* result */)
844 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBGraphics2D_PaintImageData, 840 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBGraphics2D_PaintImageData,
845 ppapi::HostResource /* graphics_2d */, 841 ppapi::HostResource /* graphics_2d */,
846 ppapi::HostResource /* image_data */, 842 ppapi::HostResource /* image_data */,
847 PP_Point /* top_left */, 843 PP_Point /* top_left */,
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
919 PP_Instance /* instance */, 915 PP_Instance /* instance */,
920 PP_Bool /* result */) 916 PP_Bool /* result */)
921 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBInstance_ExecuteScript, 917 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBInstance_ExecuteScript,
922 PP_Instance /* instance */, 918 PP_Instance /* instance */,
923 ppapi::proxy::SerializedVar /* script */, 919 ppapi::proxy::SerializedVar /* script */,
924 ppapi::proxy::SerializedVar /* out_exception */, 920 ppapi::proxy::SerializedVar /* out_exception */,
925 ppapi::proxy::SerializedVar /* result */) 921 ppapi::proxy::SerializedVar /* result */)
926 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetDefaultCharSet, 922 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetDefaultCharSet,
927 PP_Instance /* instance */, 923 PP_Instance /* instance */,
928 ppapi::proxy::SerializedVar /* result */) 924 ppapi::proxy::SerializedVar /* result */)
925 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBInstance_GetFontFamilies,
926 std::string /* result */)
929 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_SetFullscreen, 927 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_SetFullscreen,
930 PP_Instance /* instance */, 928 PP_Instance /* instance */,
931 PP_Bool /* fullscreen */, 929 PP_Bool /* fullscreen */,
932 PP_Bool /* result */) 930 PP_Bool /* result */)
933 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBInstance_GetScreenSize, 931 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBInstance_GetScreenSize,
934 PP_Instance /* instance */, 932 PP_Instance /* instance */,
935 PP_Bool /* result */, 933 PP_Bool /* result */,
936 PP_Size /* size */) 934 PP_Size /* size */)
937 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_FlashSetFullscreen, 935 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_FlashSetFullscreen,
938 PP_Instance /* instance */, 936 PP_Instance /* instance */,
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
1137 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1135 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1138 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1136 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1139 ppapi::HostResource /* video_decoder */, 1137 ppapi::HostResource /* video_decoder */,
1140 int32_t /* picture buffer id */) 1138 int32_t /* picture buffer id */)
1141 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1139 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1142 ppapi::HostResource /* video_decoder */) 1140 ppapi::HostResource /* video_decoder */)
1143 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1141 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1144 ppapi::HostResource /* video_decoder */) 1142 ppapi::HostResource /* video_decoder */)
1145 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1143 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1146 ppapi::HostResource /* video_decoder */) 1144 ppapi::HostResource /* video_decoder */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698