| 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 1657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1668 | 1668 |
| 1669 #if !defined(OS_NACL) && !defined(NACL_WIN64) | 1669 #if !defined(OS_NACL) && !defined(NACL_WIN64) |
| 1670 // Flash font file. | 1670 // Flash font file. |
| 1671 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFontFile_Create, | 1671 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFontFile_Create, |
| 1672 ppapi::proxy::SerializedFontDescription /* description */, | 1672 ppapi::proxy::SerializedFontDescription /* description */, |
| 1673 PP_PrivateFontCharset /* charset */) | 1673 PP_PrivateFontCharset /* charset */) |
| 1674 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFontFile_GetFontTable, | 1674 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFontFile_GetFontTable, |
| 1675 uint32_t /* table */) | 1675 uint32_t /* table */) |
| 1676 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFontFile_GetFontTableReply, | 1676 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFontFile_GetFontTableReply, |
| 1677 std::string /* output */) | 1677 std::string /* output */) |
| 1678 |
| 1679 // Flash functions. |
| 1680 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Flash_Create) |
| 1681 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Flash_EnumerateVideoCaptureDevices, |
| 1682 ppapi::HostResource /* video_capture */) |
| 1683 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Flash_EnumerateVideoCaptureDevicesReply, |
| 1684 std::vector<ppapi::DeviceRefData> /* devices */) |
| 1678 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1685 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |