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

Side by Side Diff: ppapi/c/private/pp_private_font_charset.h

Issue 10905227: Introduce PPB_Flash_Font. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 2 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/api/private/ppb_flash_font_file.idl ('k') | ppapi/c/private/ppb_flash_font_file.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 * found in the LICENSE file.
4 */
5
6 /* From private/pp_private_font_charset.idl,
7 * modified Fri Sep 07 12:50:35 2012.
8 */
9
10 #ifndef PPAPI_C_PRIVATE_PP_PRIVATE_FONT_CHARSET_H_
11 #define PPAPI_C_PRIVATE_PP_PRIVATE_FONT_CHARSET_H_
12
13 #include "ppapi/c/pp_macros.h"
14
15 /**
16 * @file
17 */
18
19
20 /**
21 * @addtogroup Enums
22 * @{
23 */
24 typedef enum {
25 PP_PRIVATEFONTCHARSET_ANSI = 0,
26 PP_PRIVATEFONTCHARSET_DEFAULT = 1,
27 PP_PRIVATEFONTCHARSET_SYMBOL = 2,
28 PP_PRIVATEFONTCHARSET_MAC = 77,
29 PP_PRIVATEFONTCHARSET_SHIFTJIS = 128,
30 PP_PRIVATEFONTCHARSET_HANGUL = 129,
31 PP_PRIVATEFONTCHARSET_JOHAB = 130,
32 PP_PRIVATEFONTCHARSET_GB2312 = 134,
33 PP_PRIVATEFONTCHARSET_CHINESEBIG5 = 136,
34 PP_PRIVATEFONTCHARSET_GREEK = 161,
35 PP_PRIVATEFONTCHARSET_TURKISH = 162,
36 PP_PRIVATEFONTCHARSET_VIETNAMESE = 163,
37 PP_PRIVATEFONTCHARSET_HEBREW = 177,
38 PP_PRIVATEFONTCHARSET_ARABIC = 178,
39 PP_PRIVATEFONTCHARSET_BALTIC = 186,
40 PP_PRIVATEFONTCHARSET_RUSSIAN = 204,
41 PP_PRIVATEFONTCHARSET_THAI = 222,
42 PP_PRIVATEFONTCHARSET_EASTEUROPE = 238,
43 PP_PRIVATEFONTCHARSET_OEM = 255
44 } PP_PrivateFontCharset;
45 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_PrivateFontCharset, 4);
46 /**
47 * @}
48 */
49
50 #endif /* PPAPI_C_PRIVATE_PP_PRIVATE_FONT_CHARSET_H_ */
51
OLDNEW
« no previous file with comments | « ppapi/api/private/ppb_flash_font_file.idl ('k') | ppapi/c/private/ppb_flash_font_file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698