OLD | NEW |
---|---|
(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 /** | |
7 * This file contains the <code>PPB_Flash_Font</code> interface. | |
8 */ | |
9 | |
10 label Chrome { | |
11 M23 = 0.1 | |
12 }; | |
13 | |
14 interface PPB_Flash_Font { | |
brettw
2012/09/13 23:10:41
Can you call this PPB_Flash_FontFile?
yzshen1
2012/10/08 18:38:00
Done.
| |
15 /* Returns a resource identifying a font file corresponding to the given font | |
16 * request after applying the browser-specific fallback. | |
17 * | |
18 * Currently Linux-only. | |
19 */ | |
20 PP_Resource GetFontFileWithFallback( | |
brettw
2012/09/13 23:10:41
Can you just call this "Create"?
yzshen1
2012/10/08 18:38:00
Done.
| |
21 [in] PP_Instance instance, | |
22 [in] PP_FontDescription_Dev description, | |
23 [in] PP_PrivateFontCharset charset); | |
24 | |
25 /* Given a resource previously returned by GetFontFileWithFallback, returns | |
26 * a pointer to the requested font table. Linux only. | |
27 */ | |
28 PP_Bool GetFontTableForPrivateFontFile( | |
brettw
2012/09/13 23:10:41
Can you call this GetFontTable?
yzshen1
2012/10/08 18:38:00
Done.
| |
29 [in] PP_Resource font_file, | |
30 [in] uint32_t table, | |
31 [out] mem_t output, | |
32 [out] uint32_t output_length); | |
33 }; | |
OLD | NEW |