| 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/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 1500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1511 | 1511 |
| 1512 // Graphics2D, plugin -> host -> plugin | 1512 // Graphics2D, plugin -> host -> plugin |
| 1513 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Graphics2D_Flush) | 1513 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Graphics2D_Flush) |
| 1514 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck) | 1514 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck) |
| 1515 | 1515 |
| 1516 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData, | 1516 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData, |
| 1517 PP_Resource /* image */, | 1517 PP_Resource /* image */, |
| 1518 PP_Point /* top_left */) | 1518 PP_Point /* top_left */) |
| 1519 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) | 1519 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) |
| 1520 | 1520 |
| 1521 // NetworkProxy ---------------------------------------------------------------- |
| 1522 IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkProxy_Create) |
| 1523 |
| 1524 // Query the browser for the proxy server to use for the given URL. |
| 1525 IPC_MESSAGE_CONTROL1(PpapiHostMsg_NetworkProxy_GetProxyForURL, |
| 1526 std::string /* url */) |
| 1527 |
| 1528 // Reply message for GetProxyForURL containing the proxy server. |
| 1529 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_NetworkProxy_GetProxyForURLReply, |
| 1530 std::string /* proxy */) |
| 1531 |
| 1521 // TrueTypeFont. | 1532 // TrueTypeFont. |
| 1522 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_Create) | 1533 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_Create) |
| 1523 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_GetFontFamilies) | 1534 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_GetFontFamilies) |
| 1524 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontFamiliesReply, | 1535 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontFamiliesReply, |
| 1525 std::vector<std::string> /* font_families */) | 1536 std::vector<std::string> /* font_families */) |
| 1526 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFontSingleton_GetFontsInFamily, | 1537 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFontSingleton_GetFontsInFamily, |
| 1527 std::string /* family */) | 1538 std::string /* family */) |
| 1528 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontsInFamilyReply, | 1539 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontsInFamilyReply, |
| 1529 std::vector<ppapi::proxy::SerializedTrueTypeFontDesc> | 1540 std::vector<ppapi::proxy::SerializedTrueTypeFontDesc> |
| 1530 /* fonts */) | 1541 /* fonts */) |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2007 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) | 2018 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) |
| 2008 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) | 2019 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) |
| 2009 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoSource_GetFrameReply, | 2020 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoSource_GetFrameReply, |
| 2010 ppapi::HostResource /* resource_id */, | 2021 ppapi::HostResource /* resource_id */, |
| 2011 PP_ImageDataDesc /* image_data_desc */, | 2022 PP_ImageDataDesc /* image_data_desc */, |
| 2012 int /* fd */, | 2023 int /* fd */, |
| 2013 PP_TimeTicks /* timestamp */) | 2024 PP_TimeTicks /* timestamp */) |
| 2014 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) | 2025 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) |
| 2015 | 2026 |
| 2016 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2027 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |