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

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

Issue 13913006: Add Pepper TrueType font API call to enumerate fonts in a given family. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Windows build. Created 7 years, 8 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 <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 1427 matching lines...) Expand 10 before | Expand all | Expand 10 after
1438 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData, 1438 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData,
1439 PP_Resource /* image */, 1439 PP_Resource /* image */,
1440 PP_Point /* top_left */) 1440 PP_Point /* top_left */)
1441 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) 1441 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck)
1442 1442
1443 // TrueTypeFont. 1443 // TrueTypeFont.
1444 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_Create) 1444 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_Create)
1445 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_GetFontFamilies) 1445 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_GetFontFamilies)
1446 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontFamiliesReply, 1446 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontFamiliesReply,
1447 std::vector<std::string> /* font_families */) 1447 std::vector<std::string> /* font_families */)
1448 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFontSingleton_GetFontsInFamily,
1449 std::string /* family */)
1450 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFontSingleton_GetFontsInFamilyReply,
1451 std::vector<ppapi::proxy::SerializedTrueTypeFontDesc>
1452 /* fonts */)
1448 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFont_Create, 1453 IPC_MESSAGE_CONTROL1(PpapiHostMsg_TrueTypeFont_Create,
1449 ppapi::proxy::SerializedTrueTypeFontDesc /* desc */) 1454 ppapi::proxy::SerializedTrueTypeFontDesc /* desc */)
1450 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFont_Describe) 1455 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFont_Describe)
1451 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFont_DescribeReply, 1456 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFont_DescribeReply,
1452 ppapi::proxy::SerializedTrueTypeFontDesc /* desc */) 1457 ppapi::proxy::SerializedTrueTypeFontDesc /* desc */)
1453 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFont_GetTableTags) 1458 IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFont_GetTableTags)
1454 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFont_GetTableTagsReply, 1459 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFont_GetTableTagsReply,
1455 std::vector<uint32_t> /* tags */) 1460 std::vector<uint32_t> /* tags */)
1456 IPC_MESSAGE_CONTROL3(PpapiHostMsg_TrueTypeFont_GetTable, 1461 IPC_MESSAGE_CONTROL3(PpapiHostMsg_TrueTypeFont_GetTable,
1457 uint32_t /* table */, 1462 uint32_t /* table */,
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
1818 std::vector<ppapi::HostResource> /* buffers */, 1823 std::vector<ppapi::HostResource> /* buffers */,
1819 uint32_t /* buffer_size */) 1824 uint32_t /* buffer_size */)
1820 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 1825 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
1821 uint32_t /* status */) 1826 uint32_t /* status */)
1822 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 1827 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
1823 uint32_t /* error */) 1828 uint32_t /* error */)
1824 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 1829 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
1825 uint32_t /* buffer */) 1830 uint32_t /* buffer */)
1826 1831
1827 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1832 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698