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

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

Issue 188143003: Ensure that pepper plugins honor the GPU H/W video decode blacklist and the disable-accelerated-vid… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 9 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 <map> 6 #include <map>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) 271 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map)
272 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) 272 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map)
273 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) 273 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map)
274 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) 274 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map)
275 IPC_STRUCT_TRAITS_MEMBER(default_font_size) 275 IPC_STRUCT_TRAITS_MEMBER(default_font_size)
276 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) 276 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size)
277 IPC_STRUCT_TRAITS_MEMBER(number_of_cpu_cores) 277 IPC_STRUCT_TRAITS_MEMBER(number_of_cpu_cores)
278 IPC_STRUCT_TRAITS_MEMBER(is_3d_supported) 278 IPC_STRUCT_TRAITS_MEMBER(is_3d_supported)
279 IPC_STRUCT_TRAITS_MEMBER(is_stage3d_supported) 279 IPC_STRUCT_TRAITS_MEMBER(is_stage3d_supported)
280 IPC_STRUCT_TRAITS_MEMBER(is_stage3d_baseline_supported) 280 IPC_STRUCT_TRAITS_MEMBER(is_stage3d_baseline_supported)
281 IPC_STRUCT_TRAITS_MEMBER(is_accelerated_video_decode_enabled)
281 IPC_STRUCT_TRAITS_END() 282 IPC_STRUCT_TRAITS_END()
282 283
283 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData) 284 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData)
284 IPC_STRUCT_TRAITS_MEMBER(is_filtered) 285 IPC_STRUCT_TRAITS_MEMBER(is_filtered)
285 IPC_STRUCT_TRAITS_MEMBER(event_type) 286 IPC_STRUCT_TRAITS_MEMBER(event_type)
286 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) 287 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp)
287 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) 288 IPC_STRUCT_TRAITS_MEMBER(event_modifiers)
288 IPC_STRUCT_TRAITS_MEMBER(mouse_button) 289 IPC_STRUCT_TRAITS_MEMBER(mouse_button)
289 IPC_STRUCT_TRAITS_MEMBER(mouse_position) 290 IPC_STRUCT_TRAITS_MEMBER(mouse_position)
290 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) 291 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count)
(...skipping 1791 matching lines...) Expand 10 before | Expand all | Expand 10 after
2082 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2083 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2083 PP_TalkPermission /* permission */) 2084 PP_TalkPermission /* permission */)
2084 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2085 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2085 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2086 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2086 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2087 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2087 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2088 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2088 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2089 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2089 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2090 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2090 2091
2091 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2092 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698