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

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

Issue 11516020: Refactor PPB_Flash GetLocalTimeZoneOffset to the new PPAPI resource model (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years 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
« no previous file with comments | « ppapi/proxy/flash_resource.cc ('k') | ppapi/proxy/ppb_flash_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <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
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
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)
OLDNEW
« no previous file with comments | « ppapi/proxy/flash_resource.cc ('k') | ppapi/proxy/ppb_flash_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698