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 1595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1606 IPC_MESSAGE_CONTROL1(PpapiHostMsg_AudioInput_StartOrStop, bool /* capture */) | 1606 IPC_MESSAGE_CONTROL1(PpapiHostMsg_AudioInput_StartOrStop, bool /* capture */) |
1607 IPC_MESSAGE_CONTROL0(PpapiHostMsg_AudioInput_Close) | 1607 IPC_MESSAGE_CONTROL0(PpapiHostMsg_AudioInput_Close) |
1608 | 1608 |
1609 // Flash. | 1609 // Flash. |
1610 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Flash_Create) | 1610 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Flash_Create) |
1611 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Flash_UpdateActivity) | 1611 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Flash_UpdateActivity) |
1612 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Flash_GetProxyForURL, std::string /* url */) | 1612 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Flash_GetProxyForURL, std::string /* url */) |
1613 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Flash_GetProxyForURLReply, | 1613 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Flash_GetProxyForURLReply, |
1614 std::string /* proxy */) | 1614 std::string /* proxy */) |
1615 | 1615 |
| 1616 // Queries the browser for the local time zone offset for a given time. |
| 1617 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Flash_GetLocalTimeZoneOffset, |
| 1618 base::Time /* time */) |
| 1619 // Reply to GetLocalTimeZoneOffset containing the time zone offset as a double. |
| 1620 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Flash_GetLocalTimeZoneOffsetReply, |
| 1621 double /* offset */) |
| 1622 |
1616 // Device enumeration messages used by audio input and video capture. | 1623 // Device enumeration messages used by audio input and video capture. |
1617 IPC_MESSAGE_CONTROL0(PpapiHostMsg_DeviceEnumeration_EnumerateDevices) | 1624 IPC_MESSAGE_CONTROL0(PpapiHostMsg_DeviceEnumeration_EnumerateDevices) |
1618 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_DeviceEnumeration_EnumerateDevicesReply, | 1625 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_DeviceEnumeration_EnumerateDevicesReply, |
1619 std::vector<ppapi::DeviceRefData> /* devices */) | 1626 std::vector<ppapi::DeviceRefData> /* devices */) |
1620 IPC_MESSAGE_CONTROL1(PpapiHostMsg_DeviceEnumeration_MonitorDeviceChange, | 1627 IPC_MESSAGE_CONTROL1(PpapiHostMsg_DeviceEnumeration_MonitorDeviceChange, |
1621 uint32_t /* callback_id */) | 1628 uint32_t /* callback_id */) |
1622 IPC_MESSAGE_CONTROL0(PpapiHostMsg_DeviceEnumeration_StopMonitoringDeviceChange) | 1629 IPC_MESSAGE_CONTROL0(PpapiHostMsg_DeviceEnumeration_StopMonitoringDeviceChange) |
1623 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_DeviceEnumeration_NotifyDeviceChange, | 1630 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_DeviceEnumeration_NotifyDeviceChange, |
1624 uint32_t /* callback_id */, | 1631 uint32_t /* callback_id */, |
1625 std::vector<ppapi::DeviceRefData> /* devices */) | 1632 std::vector<ppapi::DeviceRefData> /* devices */) |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1728 std::vector<ppapi::HostResource> /* buffers */, | 1735 std::vector<ppapi::HostResource> /* buffers */, |
1729 uint32_t /* buffer_size */) | 1736 uint32_t /* buffer_size */) |
1730 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 1737 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
1731 uint32_t /* status */) | 1738 uint32_t /* status */) |
1732 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 1739 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
1733 uint32_t /* error */) | 1740 uint32_t /* error */) |
1734 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 1741 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
1735 uint32_t /* buffer */) | 1742 uint32_t /* buffer */) |
1736 | 1743 |
1737 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1744 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |