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

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

Issue 337203003: Move PPB_TrueTypeFont_Dev host from renderer to browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Check fd / HANDLE / FontRef for validity. Created 6 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
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 <map> 6 #include <map>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 1546 matching lines...) Expand 10 before | Expand all | Expand 10 after
1557 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_GetFontFamilies) 1557 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_GetFontFamilies)
1558 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontFamiliesReply, 1558 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontFamiliesReply,
1559 std::vector<std::string> /* font_families */) 1559 std::vector<std::string> /* font_families */)
1560 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFontSingleton_GetFontsInFamily, 1560 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFontSingleton_GetFontsInFamily,
1561 std::string /* family */) 1561 std::string /* family */)
1562 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontsInFamilyReply, 1562 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontsInFamilyReply,
1563 std::vector<ppapi::proxy::SerializedTrueTypeFontDesc> 1563 std::vector<ppapi::proxy::SerializedTrueTypeFontDesc>
1564 /* fonts */) 1564 /* fonts */)
1565 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFont_Create, 1565 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFont_Create,
1566 ppapi::proxy::SerializedTrueTypeFontDesc /* desc */) 1566 ppapi::proxy::SerializedTrueTypeFontDesc /* desc */)
1567 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFont_Describe) 1567 // Unsolicited reply to return the actual font's desc to the plugin.
1568 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFont_DescribeReply, 1568 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_TrueTypeFont_CreateReply,
1569 ppapi::proxy::SerializedTrueTypeFontDesc /* desc */) 1569 ppapi::proxy::SerializedTrueTypeFontDesc /* desc */,
1570 int32_t /* result */)
1570 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFont_GetTableTags) 1571 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFont_GetTableTags)
1571 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFont_GetTableTagsReply, 1572 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFont_GetTableTagsReply,
1572 std::vector<uint32_t> /* tags */) 1573 std::vector<uint32_t> /* tags */)
1573 IPC_MESSAGE_CONTROL3(PpapiHostMsg_TrueTypeFont_GetTable, 1574 IPC_MESSAGE_CONTROL3(PpapiHostMsg_TrueTypeFont_GetTable,
1574 uint32_t /* table */, 1575 uint32_t /* table */,
1575 int32_t /* offset */, 1576 int32_t /* offset */,
1576 int32_t /* max_data_length */) 1577 int32_t /* max_data_length */)
1577 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFont_GetTableReply, 1578 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFont_GetTableReply,
1578 std::string /* data */) 1579 std::string /* data */)
1579 1580
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
2231 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2232 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2232 PP_TalkPermission /* permission */) 2233 PP_TalkPermission /* permission */)
2233 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2234 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2234 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2235 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2235 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2236 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2236 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2237 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2237 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2238 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2238 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2239 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2239 2240
2240 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2241 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_truetype_font_win.cc ('k') | ppapi/proxy/truetype_font_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698