Pepper_47_C_interfaces
ppb_flash_font_file.h
Go to the documentation of this file.
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/ppb_flash_font_file.idl modified Thu Oct 20 13:57:04 2016. */
7 
8 #ifndef PPAPI_C_PRIVATE_PPB_FLASH_FONT_FILE_H_
9 #define PPAPI_C_PRIVATE_PPB_FLASH_FONT_FILE_H_
10 
11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_instance.h"
13 #include "ppapi/c/pp_macros.h"
14 #include "ppapi/c/pp_resource.h"
15 #include "ppapi/c/pp_stdint.h"
16 #include "ppapi/c/pp_var.h"
19 
20 #define PPB_FLASH_FONTFILE_INTERFACE_0_1 "PPB_Flash_FontFile;0.1"
21 #define PPB_FLASH_FONTFILE_INTERFACE PPB_FLASH_FONTFILE_INTERFACE_0_1
22 
23 /**
24  * @file
25  * This file contains the <code>PPB_Flash_FontFile</code> interface.
26  */
27 
28 
29 /**
30  * @addtogroup Interfaces
31  * @{
32  */
34  /* Returns a resource identifying a font file corresponding to the given font
35  * request after applying the browser-specific fallback.
36  */
38  PP_Instance instance,
39  const struct PP_BrowserFont_Trusted_Description* description,
40  PP_PrivateFontCharset charset);
41  /* Determines if a given resource is Flash font file.
42  */
44  /* Returns the requested font table.
45  * |output_length| should pass in the size of |output|. And it will return
46  * the actual length of returned data. |output| could be NULL in order to
47  * query the size of the buffer size needed. In that case, the input value of
48  * |output_length| is ignored.
49  * Note: it is Linux only and fails directly on other platforms.
50  */
52  uint32_t table,
53  void* output,
54  uint32_t* output_length);
55 };
56 
58 /**
59  * @}
60  */
61 
62 #endif /* PPAPI_C_PRIVATE_PPB_FLASH_FONT_FILE_H_ */
63 
PP_PrivateFontCharset
int32_t PP_Resource
Definition: pp_resource.h:40
PP_Bool(* GetFontTable)(PP_Resource font_file, uint32_t table, void *output, uint32_t *output_length)
int32_t PP_Instance
Definition: pp_instance.h:34
PP_Bool
Definition: pp_bool.h:30
PP_Resource(* Create)(PP_Instance instance, const struct PP_BrowserFont_Trusted_Description *description, PP_PrivateFontCharset charset)
PP_Bool(* IsFlashFontFile)(PP_Resource resource)