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 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) | 384 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) |
385 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | 385 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
386 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) | 386 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) |
387 IPC_STRUCT_TRAITS_MEMBER(number_of_cpu_cores) | 387 IPC_STRUCT_TRAITS_MEMBER(number_of_cpu_cores) |
388 IPC_STRUCT_TRAITS_MEMBER(is_3d_supported) | 388 IPC_STRUCT_TRAITS_MEMBER(is_3d_supported) |
389 IPC_STRUCT_TRAITS_MEMBER(is_stage3d_supported) | 389 IPC_STRUCT_TRAITS_MEMBER(is_stage3d_supported) |
390 IPC_STRUCT_TRAITS_MEMBER(is_stage3d_baseline_supported) | 390 IPC_STRUCT_TRAITS_MEMBER(is_stage3d_baseline_supported) |
391 IPC_STRUCT_TRAITS_MEMBER(is_accelerated_video_decode_enabled) | 391 IPC_STRUCT_TRAITS_MEMBER(is_accelerated_video_decode_enabled) |
392 IPC_STRUCT_TRAITS_END() | 392 IPC_STRUCT_TRAITS_END() |
393 | 393 |
| 394 IPC_STRUCT_TRAITS_BEGIN(ppapi::TouchPointWithTilt) |
| 395 IPC_STRUCT_TRAITS_MEMBER(touch) |
| 396 IPC_STRUCT_TRAITS_MEMBER(tilt) |
| 397 IPC_STRUCT_TRAITS_END() |
| 398 |
394 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData) | 399 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData) |
395 IPC_STRUCT_TRAITS_MEMBER(is_filtered) | 400 IPC_STRUCT_TRAITS_MEMBER(is_filtered) |
396 IPC_STRUCT_TRAITS_MEMBER(event_type) | 401 IPC_STRUCT_TRAITS_MEMBER(event_type) |
397 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) | 402 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) |
398 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) | 403 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) |
399 IPC_STRUCT_TRAITS_MEMBER(mouse_button) | 404 IPC_STRUCT_TRAITS_MEMBER(mouse_button) |
400 IPC_STRUCT_TRAITS_MEMBER(mouse_position) | 405 IPC_STRUCT_TRAITS_MEMBER(mouse_position) |
401 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) | 406 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) |
402 IPC_STRUCT_TRAITS_MEMBER(mouse_movement) | 407 IPC_STRUCT_TRAITS_MEMBER(mouse_movement) |
403 IPC_STRUCT_TRAITS_MEMBER(wheel_delta) | 408 IPC_STRUCT_TRAITS_MEMBER(wheel_delta) |
(...skipping 2135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2539 uint32_t /* status */) | 2544 uint32_t /* status */) |
2540 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 2545 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
2541 uint32_t /* error */) | 2546 uint32_t /* error */) |
2542 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 2547 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
2543 uint32_t /* buffer */) | 2548 uint32_t /* buffer */) |
2544 | 2549 |
2545 // Sent by the PPAPI process to indicate that a field trial has been activated. | 2550 // Sent by the PPAPI process to indicate that a field trial has been activated. |
2546 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FieldTrialActivated, std::string /* name */) | 2551 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FieldTrialActivated, std::string /* name */) |
2547 | 2552 |
2548 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2553 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |