blob: 0c4aaa686808bb4240faeb8f73b312ac91330cca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PPAPI_CPP_PRIVATE_FLASH_FONT_FILE_H_
#define PPAPI_CPP_PRIVATE_FLASH_FONT_FILE_H_
#include <stdint.h>
#include "ppapi/c/private/pp_private_font_charset.h"
#include "ppapi/cpp/resource.h"
struct PP_BrowserFont_Trusted_Description;
namespace pp {
class InstanceHandle;
namespace flash {
class FontFile : public Resource {
public:
// Default constructor for making an is_null() FontFile resource.
FontFile();
FontFile(const InstanceHandle& instance,
const PP_BrowserFont_Trusted_Description* description,
PP_PrivateFontCharset charset);
virtual ~FontFile();
// Returns true if the required interface is available.
static bool IsAvailable();
// Returns true if this interface is supported for Windows.
bool IsSupportedForWindows();
bool GetFontTable(uint32_t table, void* output, uint32_t* output_length);
};
} // namespace flash
} // namespace pp
#endif // PPAPI_CPP_PRIVATE_FLASH_FONT_FILE_H_
|