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 1454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1465 | 1465 |
1466 // Graphics2D, plugin -> host -> plugin | 1466 // Graphics2D, plugin -> host -> plugin |
1467 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Graphics2D_Flush) | 1467 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Graphics2D_Flush) |
1468 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck) | 1468 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck) |
1469 | 1469 |
1470 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData, | 1470 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData, |
1471 PP_Resource /* image */, | 1471 PP_Resource /* image */, |
1472 PP_Point /* top_left */) | 1472 PP_Point /* top_left */) |
1473 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) | 1473 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) |
1474 | 1474 |
| 1475 // NetworkProxy ---------------------------------------------------------------- |
| 1476 IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkProxy_Create) |
| 1477 |
| 1478 // Query the browser for the proxy server to use for the given URL. |
| 1479 IPC_MESSAGE_CONTROL1(PpapiHostMsg_NetworkProxy_GetProxyForURL, |
| 1480 std::string /* url */); |
| 1481 |
| 1482 // Reply message for GetProxyForURL containing the proxy server. |
| 1483 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_NetworkProxy_GetProxyForURLReply, |
| 1484 std::string /* proxy */) |
| 1485 |
1475 // TrueTypeFont. | 1486 // TrueTypeFont. |
1476 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_Create) | 1487 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_Create) |
1477 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_GetFontFamilies) | 1488 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_GetFontFamilies) |
1478 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontFamiliesReply, | 1489 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontFamiliesReply, |
1479 std::vector<std::string> /* font_families */) | 1490 std::vector<std::string> /* font_families */) |
1480 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFontSingleton_GetFontsInFamily, | 1491 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFontSingleton_GetFontsInFamily, |
1481 std::string /* family */) | 1492 std::string /* family */) |
1482 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontsInFamilyReply, | 1493 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontsInFamilyReply, |
1483 std::vector<ppapi::proxy::SerializedTrueTypeFontDesc> | 1494 std::vector<ppapi::proxy::SerializedTrueTypeFontDesc> |
1484 /* fonts */) | 1495 /* fonts */) |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1936 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) | 1947 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) |
1937 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) | 1948 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) |
1938 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoSource_GetFrameReply, | 1949 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoSource_GetFrameReply, |
1939 ppapi::HostResource /* resource_id */, | 1950 ppapi::HostResource /* resource_id */, |
1940 PP_ImageDataDesc /* image_data_desc */, | 1951 PP_ImageDataDesc /* image_data_desc */, |
1941 int /* fd */, | 1952 int /* fd */, |
1942 PP_TimeTicks /* timestamp */) | 1953 PP_TimeTicks /* timestamp */) |
1943 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) | 1954 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) |
1944 | 1955 |
1945 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1956 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |