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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 IPC_STRUCT_TRAITS_END() | 116 IPC_STRUCT_TRAITS_END() |
117 | 117 |
118 IPC_STRUCT_TRAITS_BEGIN(ppapi::ViewData) | 118 IPC_STRUCT_TRAITS_BEGIN(ppapi::ViewData) |
119 IPC_STRUCT_TRAITS_MEMBER(rect) | 119 IPC_STRUCT_TRAITS_MEMBER(rect) |
120 IPC_STRUCT_TRAITS_MEMBER(is_fullscreen) | 120 IPC_STRUCT_TRAITS_MEMBER(is_fullscreen) |
121 IPC_STRUCT_TRAITS_MEMBER(is_page_visible) | 121 IPC_STRUCT_TRAITS_MEMBER(is_page_visible) |
122 IPC_STRUCT_TRAITS_MEMBER(clip_rect) | 122 IPC_STRUCT_TRAITS_MEMBER(clip_rect) |
123 IPC_STRUCT_TRAITS_END() | 123 IPC_STRUCT_TRAITS_END() |
124 | 124 |
125 IPC_STRUCT_TRAITS_BEGIN(ppapi::Preferences) | 125 IPC_STRUCT_TRAITS_BEGIN(ppapi::Preferences) |
126 IPC_STRUCT_TRAITS_MEMBER(standard_font_family) | 126 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) |
127 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family) | 127 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) |
128 IPC_STRUCT_TRAITS_MEMBER(serif_font_family) | 128 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) |
129 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family) | 129 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) |
130 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | 130 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
131 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) | 131 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) |
132 IPC_STRUCT_TRAITS_END() | 132 IPC_STRUCT_TRAITS_END() |
133 | 133 |
134 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData) | 134 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData) |
135 IPC_STRUCT_TRAITS_MEMBER(is_filtered) | 135 IPC_STRUCT_TRAITS_MEMBER(is_filtered) |
136 IPC_STRUCT_TRAITS_MEMBER(event_type) | 136 IPC_STRUCT_TRAITS_MEMBER(event_type) |
137 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) | 137 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) |
138 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) | 138 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) |
139 IPC_STRUCT_TRAITS_MEMBER(mouse_button) | 139 IPC_STRUCT_TRAITS_MEMBER(mouse_button) |
(...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1326 // PPB_X509Certificate_Private | 1326 // PPB_X509Certificate_Private |
1327 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, | 1327 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, |
1328 std::vector<char> /* der */, | 1328 std::vector<char> /* der */, |
1329 bool /* succeeded */, | 1329 bool /* succeeded */, |
1330 ppapi::PPB_X509Certificate_Fields /* result */) | 1330 ppapi::PPB_X509Certificate_Fields /* result */) |
1331 | 1331 |
1332 // PPB_Font. | 1332 // PPB_Font. |
1333 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1333 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
1334 std::string /* result */) | 1334 std::string /* result */) |
1335 #endif // !defined(OS_NACL) | 1335 #endif // !defined(OS_NACL) |
OLD | NEW |