| 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 27 matching lines...) Expand all Loading... |
| 38 #include "ppapi/c/private/ppb_flash.h" | 38 #include "ppapi/c/private/ppb_flash.h" |
| 39 #include "ppapi/c/private/ppb_host_resolver_private.h" | 39 #include "ppapi/c/private/ppb_host_resolver_private.h" |
| 40 #include "ppapi/c/private/ppb_net_address_private.h" | 40 #include "ppapi/c/private/ppb_net_address_private.h" |
| 41 #include "ppapi/c/private/ppb_tcp_socket_private.h" | 41 #include "ppapi/c/private/ppb_tcp_socket_private.h" |
| 42 #include "ppapi/c/private/ppb_udp_socket_private.h" | 42 #include "ppapi/c/private/ppb_udp_socket_private.h" |
| 43 #include "ppapi/c/private/ppp_flash_browser_operations.h" | 43 #include "ppapi/c/private/ppp_flash_browser_operations.h" |
| 44 #include "ppapi/proxy/ppapi_param_traits.h" | 44 #include "ppapi/proxy/ppapi_param_traits.h" |
| 45 #include "ppapi/proxy/ppapi_proxy_export.h" | 45 #include "ppapi/proxy/ppapi_proxy_export.h" |
| 46 #include "ppapi/proxy/resource_message_params.h" | 46 #include "ppapi/proxy/resource_message_params.h" |
| 47 #include "ppapi/proxy/serialized_flash_menu.h" | 47 #include "ppapi/proxy/serialized_flash_menu.h" |
| 48 #include "ppapi/proxy/serialized_handle.h" |
| 48 #include "ppapi/proxy/serialized_structs.h" | 49 #include "ppapi/proxy/serialized_structs.h" |
| 49 #include "ppapi/proxy/serialized_var.h" | 50 #include "ppapi/proxy/serialized_var.h" |
| 50 #include "ppapi/shared_impl/dir_contents.h" | 51 #include "ppapi/shared_impl/dir_contents.h" |
| 51 #include "ppapi/shared_impl/file_path.h" | 52 #include "ppapi/shared_impl/file_path.h" |
| 52 #include "ppapi/shared_impl/ppapi_preferences.h" | 53 #include "ppapi/shared_impl/ppapi_preferences.h" |
| 53 #include "ppapi/shared_impl/ppb_device_ref_shared.h" | 54 #include "ppapi/shared_impl/ppb_device_ref_shared.h" |
| 54 #include "ppapi/shared_impl/ppb_input_event_shared.h" | 55 #include "ppapi/shared_impl/ppb_input_event_shared.h" |
| 55 #include "ppapi/shared_impl/ppb_network_list_private_shared.h" | 56 #include "ppapi/shared_impl/ppb_network_list_private_shared.h" |
| 56 #include "ppapi/shared_impl/ppb_view_shared.h" | 57 #include "ppapi/shared_impl/ppb_view_shared.h" |
| 57 #include "ppapi/shared_impl/ppp_flash_browser_operations_shared.h" | 58 #include "ppapi/shared_impl/ppp_flash_browser_operations_shared.h" |
| (...skipping 1674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1732 std::vector<ppapi::HostResource> /* buffers */, | 1733 std::vector<ppapi::HostResource> /* buffers */, |
| 1733 uint32_t /* buffer_size */) | 1734 uint32_t /* buffer_size */) |
| 1734 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 1735 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
| 1735 uint32_t /* status */) | 1736 uint32_t /* status */) |
| 1736 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 1737 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
| 1737 uint32_t /* error */) | 1738 uint32_t /* error */) |
| 1738 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 1739 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
| 1739 uint32_t /* buffer */) | 1740 uint32_t /* buffer */) |
| 1740 | 1741 |
| 1741 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1742 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |