| Index: webkit/plugins/ppapi/ppb_flash_impl.h
|
| ===================================================================
|
| --- webkit/plugins/ppapi/ppb_flash_impl.h (revision 114082)
|
| +++ webkit/plugins/ppapi/ppb_flash_impl.h (working copy)
|
| @@ -20,6 +20,22 @@
|
| // exposed to the plugin.
|
| static const PPB_Flash* GetInterface();
|
|
|
| + static PP_Bool DrawGlyphs(PP_Instance pp_instance,
|
| + PP_Resource pp_image_data,
|
| + const PP_FontDescription_Dev* font_desc,
|
| + uint32_t color,
|
| + PP_Point position,
|
| + PP_Rect clip,
|
| + const float transformation[3][3],
|
| + uint32_t glyph_count,
|
| + const uint16_t glyph_indices[],
|
| + const PP_Point glyph_advances[])
|
| +#if defined(OS_POSIX) && !defined(OS_MACOSX)
|
| + ;
|
| +#else
|
| + { return PP_FALSE; }
|
| +#endif
|
| +
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl);
|
| };
|
|
|
|
|