blob: 1ca8887cc6789ff71a7e05ce4a3aa20cf2c208d2 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
// 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 CONTENT_COMMON_MAC_FONT_LOADER_H_
#define CONTENT_COMMON_MAC_FONT_LOADER_H_
#include <CoreText/CoreText.h>
#include <stdint.h>
#include <memory>
#include "base/callback_forward.h"
#include "base/mac/scoped_cftyperef.h"
#include "base/strings/string16.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/system/buffer.h"
namespace content {
// Provides functionality to transmit fonts over IPC.
//
// Note about font formats: .dfont (datafork suitcase) fonts are currently not
// supported by this code since CGFontCreateWithDataProvider() can't handle them
// directly.
class FontLoader {
public:
// Internal font load result data. Exposed here for testing.
struct CONTENT_EXPORT ResultInternal {
ResultInternal();
~ResultInternal();
mojo::ScopedSharedBufferHandle font_data;
uint32_t font_id = 0;
};
// Callback for the reporting result of LoadFont().
// - The ScopedSharedBufferHandle points to a shared memory buffer containing
// the raw data for the font file.
// - The last argument is the font_id: a unique identifier for the on-disk
// file we load for the font.
using LoadedCallback =
base::OnceCallback<void(mojo::ScopedSharedBufferHandle, uint32_t)>;
// Load a font specified by |font| into a shared memory buffer suitable for
// sending over IPC. On failure, zeroes and an invalid handle are reported
// to the callback.
CONTENT_EXPORT
static void LoadFont(const base::string16& font_name,
float font_point_size,
LoadedCallback callback);
// Given a shared memory buffer containing the raw data for a font file, load
// the font and turn them into a CTFontDescriptor.
//
// |data| - A shared memory handle pointing to the raw data from a font file.
// |data_size| - Size of |data|.
//
// On return:
// returns true on success, false on failure.
// |out| - A CTFontDescriptorRef corresponding to the designated font buffer.
// The caller is responsible for releasing this value via CFRelease().
CONTENT_EXPORT
static bool CTFontDescriptorFromBuffer(
mojo::ScopedSharedBufferHandle font_data,
uint32_t font_data_size,
base::ScopedCFTypeRef<CTFontDescriptorRef>* out_descriptor);
CONTENT_EXPORT
static std::unique_ptr<ResultInternal> LoadFontForTesting(
const base::string16& font_name,
float font_point_size);
};
} // namespace content
#endif // CONTENT_COMMON_MAC_FONT_LOADER_H_
|