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

Side by Side Diff: ppapi/api/private/ppb_flash_font_file.idl

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
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 /**
7 * This file contains the <code>PPB_Flash_FontFile</code> interface.
8 */
9
10 label Chrome {
11 M24 = 0.1
12 };
13
14 interface PPB_Flash_FontFile {
15 /* Returns a resource identifying a font file corresponding to the given font
16 * request after applying the browser-specific fallback.
17 */
18 PP_Resource Create(
19 [in] PP_Instance instance,
20 [in] PP_FontDescription_Dev description,
21 [in] PP_PrivateFontCharset charset);
22
23 /* Determines if a given resource is Flash font file.
24 */
25 PP_Bool IsFlashFontFile([in] PP_Resource resource);
26
27 /* Returns the requested font table.
28 * |output_length| should pass in the size of |output|. And it will return
29 * the actual length of returned data. |output| could be NULL in order to
30 * query the size of the buffer size needed. In that case, the input value of
31 * |output_length| is ignored.
32 * Note: it is Linux only and fails directly on other platforms.
33 */
34 PP_Bool GetFontTable(
35 [in] PP_Resource font_file,
36 [in] uint32_t table,
37 [out] mem_t output,
38 [out] uint32_t output_length);
39 };
OLDNEW
« no previous file with comments | « ppapi/api/private/pp_private_font_charset.idl ('k') | ppapi/c/private/pp_private_font_charset.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698