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

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

Issue 16819002: PPAPI: Introduce PPB_NetworkProxy_Dev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 7 years, 5 months 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/network_proxy_resource.cc ('k') | ppapi/proxy/ppb_instance_proxy.cc » ('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/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 1507 matching lines...) Expand 10 before | Expand all | Expand 10 after
1518 1518
1519 // Graphics2D, plugin -> host -> plugin 1519 // Graphics2D, plugin -> host -> plugin
1520 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Graphics2D_Flush) 1520 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Graphics2D_Flush)
1521 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck) 1521 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck)
1522 1522
1523 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData, 1523 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData,
1524 PP_Resource /* image */, 1524 PP_Resource /* image */,
1525 PP_Point /* top_left */) 1525 PP_Point /* top_left */)
1526 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) 1526 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck)
1527 1527
1528 // NetworkProxy ----------------------------------------------------------------
1529 IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkProxy_Create)
1530
1531 // Query the browser for the proxy server to use for the given URL.
1532 IPC_MESSAGE_CONTROL1(PpapiHostMsg_NetworkProxy_GetProxyForURL,
1533 std::string /* url */)
1534
1535 // Reply message for GetProxyForURL containing the proxy server.
1536 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_NetworkProxy_GetProxyForURLReply,
1537 std::string /* proxy */)
1538
1528 // TrueTypeFont. 1539 // TrueTypeFont.
1529 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_Create) 1540 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_Create)
1530 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_GetFontFamilies) 1541 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_GetFontFamilies)
1531 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontFamiliesReply, 1542 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontFamiliesReply,
1532 std::vector<std::string> /* font_families */) 1543 std::vector<std::string> /* font_families */)
1533 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFontSingleton_GetFontsInFamily, 1544 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFontSingleton_GetFontsInFamily,
1534 std::string /* family */) 1545 std::string /* family */)
1535 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontsInFamilyReply, 1546 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontsInFamilyReply,
1536 std::vector<ppapi::proxy::SerializedTrueTypeFontDesc> 1547 std::vector<ppapi::proxy::SerializedTrueTypeFontDesc>
1537 /* fonts */) 1548 /* fonts */)
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
2023 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2034 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2024 PP_TalkPermission /* permission */) 2035 PP_TalkPermission /* permission */)
2025 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2036 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2026 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2037 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2027 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2038 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2028 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2039 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2029 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2040 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2030 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2041 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2031 2042
2032 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2043 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/network_proxy_resource.cc ('k') | ppapi/proxy/ppb_instance_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698