| OLD | NEW |
| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 IPC_STRUCT_TRAITS_BEGIN(ppapi::FlashSiteSetting) | 122 IPC_STRUCT_TRAITS_BEGIN(ppapi::FlashSiteSetting) |
| 123 IPC_STRUCT_TRAITS_MEMBER(site) | 123 IPC_STRUCT_TRAITS_MEMBER(site) |
| 124 IPC_STRUCT_TRAITS_MEMBER(permission) | 124 IPC_STRUCT_TRAITS_MEMBER(permission) |
| 125 IPC_STRUCT_TRAITS_END() | 125 IPC_STRUCT_TRAITS_END() |
| 126 | 126 |
| 127 IPC_STRUCT_TRAITS_BEGIN(ppapi::ViewData) | 127 IPC_STRUCT_TRAITS_BEGIN(ppapi::ViewData) |
| 128 IPC_STRUCT_TRAITS_MEMBER(rect) | 128 IPC_STRUCT_TRAITS_MEMBER(rect) |
| 129 IPC_STRUCT_TRAITS_MEMBER(is_fullscreen) | 129 IPC_STRUCT_TRAITS_MEMBER(is_fullscreen) |
| 130 IPC_STRUCT_TRAITS_MEMBER(is_page_visible) | 130 IPC_STRUCT_TRAITS_MEMBER(is_page_visible) |
| 131 IPC_STRUCT_TRAITS_MEMBER(clip_rect) | 131 IPC_STRUCT_TRAITS_MEMBER(clip_rect) |
| 132 IPC_STRUCT_TRAITS_MEMBER(device_scale) |
| 133 IPC_STRUCT_TRAITS_MEMBER(css_scale) |
| 132 IPC_STRUCT_TRAITS_END() | 134 IPC_STRUCT_TRAITS_END() |
| 133 | 135 |
| 134 IPC_STRUCT_TRAITS_BEGIN(ppapi::Preferences) | 136 IPC_STRUCT_TRAITS_BEGIN(ppapi::Preferences) |
| 135 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) | 137 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) |
| 136 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) | 138 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) |
| 137 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) | 139 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) |
| 138 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) | 140 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) |
| 139 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | 141 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
| 140 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) | 142 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) |
| 141 IPC_STRUCT_TRAITS_MEMBER(is_3d_supported) | 143 IPC_STRUCT_TRAITS_MEMBER(is_3d_supported) |
| (...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 803 // PPB_FileSystem. | 805 // PPB_FileSystem. |
| 804 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileSystem_Create, | 806 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileSystem_Create, |
| 805 PP_Instance /* instance */, | 807 PP_Instance /* instance */, |
| 806 int /* type */, | 808 int /* type */, |
| 807 ppapi::HostResource /* result */) | 809 ppapi::HostResource /* result */) |
| 808 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileSystem_Open, | 810 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileSystem_Open, |
| 809 ppapi::HostResource /* result */, | 811 ppapi::HostResource /* result */, |
| 810 int64_t /* expected_size */) | 812 int64_t /* expected_size */) |
| 811 | 813 |
| 812 // PPB_Graphics2D. | 814 // PPB_Graphics2D. |
| 813 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics2D_Create, | 815 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiHostMsg_PPBGraphics2D_Create, |
| 814 PP_Instance /* instance */, | 816 PP_Instance /* instance */, |
| 815 PP_Size /* size */, | 817 PP_Size /* size */, |
| 816 PP_Bool /* is_always_opaque */, | 818 PP_Bool /* is_always_opaque */, |
| 819 float /* scale */, |
| 817 ppapi::HostResource /* result */) | 820 ppapi::HostResource /* result */) |
| 818 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBGraphics2D_PaintImageData, | 821 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBGraphics2D_PaintImageData, |
| 819 ppapi::HostResource /* graphics_2d */, | 822 ppapi::HostResource /* graphics_2d */, |
| 820 ppapi::HostResource /* image_data */, | 823 ppapi::HostResource /* image_data */, |
| 821 PP_Point /* top_left */, | 824 PP_Point /* top_left */, |
| 822 bool /* src_rect_specified */, | 825 bool /* src_rect_specified */, |
| 823 PP_Rect /* src_rect */) | 826 PP_Rect /* src_rect */) |
| 824 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBGraphics2D_Scroll, | 827 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBGraphics2D_Scroll, |
| 825 ppapi::HostResource /* graphics_2d */, | 828 ppapi::HostResource /* graphics_2d */, |
| 826 bool /* clip_specified */, | 829 bool /* clip_specified */, |
| (...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1358 // PPB_X509Certificate_Private | 1361 // PPB_X509Certificate_Private |
| 1359 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, | 1362 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, |
| 1360 std::vector<char> /* der */, | 1363 std::vector<char> /* der */, |
| 1361 bool /* succeeded */, | 1364 bool /* succeeded */, |
| 1362 ppapi::PPB_X509Certificate_Fields /* result */) | 1365 ppapi::PPB_X509Certificate_Fields /* result */) |
| 1363 | 1366 |
| 1364 // PPB_Font. | 1367 // PPB_Font. |
| 1365 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1368 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
| 1366 std::string /* result */) | 1369 std::string /* result */) |
| 1367 #endif // !defined(OS_NACL) | 1370 #endif // !defined(OS_NACL) |
| OLD | NEW |