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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
// Copyright (c) 2010 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 WEBKIT_GLUE_PLUGINS_PPB_PRIVATE_H_
#define WEBKIT_GLUE_PLUGINS_PPB_PRIVATE_H_
#include "third_party/ppapi/c/dev/ppb_font_dev.h"
#include "third_party/ppapi/c/pp_instance.h"
#include "third_party/ppapi/c/pp_module.h"
#include "third_party/ppapi/c/pp_var.h"
#define PPB_PRIVATE_INTERFACE "PPB_Private;1"
// From the public PPB_Font_Dev file.
struct PP_FontDescription_Dev;
typedef enum {
PP_RESOURCESTRING_PDFGETPASSWORD = 0,
} PP_ResourceString;
typedef enum {
PP_RESOURCEIMAGE_PDF_BUTTON_FTH = 0,
PP_RESOURCEIMAGE_PDF_BUTTON_FTH_HOVER = 1,
PP_RESOURCEIMAGE_PDF_BUTTON_FTH_PRESSED = 2,
PP_RESOURCEIMAGE_PDF_BUTTON_FTW = 3,
PP_RESOURCEIMAGE_PDF_BUTTON_FTW_HOVER = 4,
PP_RESOURCEIMAGE_PDF_BUTTON_FTW_PRESSED = 5,
PP_RESOURCEIMAGE_PDF_BUTTON_ZOOMIN = 6,
PP_RESOURCEIMAGE_PDF_BUTTON_ZOOMIN_HOVER = 7,
PP_RESOURCEIMAGE_PDF_BUTTON_ZOOMIN_PRESSED = 8,
PP_RESOURCEIMAGE_PDF_BUTTON_ZOOMOUT = 9,
PP_RESOURCEIMAGE_PDF_BUTTON_ZOOMOUT_HOVER = 10,
PP_RESOURCEIMAGE_PDF_BUTTON_ZOOMOUT_PRESSED = 11,
PP_RESOURCEIMAGE_PDF_BUTTON_THUMBNAIL_0 = 12,
PP_RESOURCEIMAGE_PDF_BUTTON_THUMBNAIL_1 = 13,
PP_RESOURCEIMAGE_PDF_BUTTON_THUMBNAIL_2 = 14,
PP_RESOURCEIMAGE_PDF_BUTTON_THUMBNAIL_3 = 15,
PP_RESOURCEIMAGE_PDF_BUTTON_THUMBNAIL_4 = 16,
PP_RESOURCEIMAGE_PDF_BUTTON_THUMBNAIL_5 = 17,
PP_RESOURCEIMAGE_PDF_BUTTON_THUMBNAIL_6 = 18,
PP_RESOURCEIMAGE_PDF_BUTTON_THUMBNAIL_7 = 19,
PP_RESOURCEIMAGE_PDF_BUTTON_THUMBNAIL_8 = 20,
PP_RESOURCEIMAGE_PDF_BUTTON_THUMBNAIL_9 = 21,
PP_RESOURCEIMAGE_PDF_BUTTON_THUMBNAIL_NUM_BACKGROUND = 22,
} PP_ResourceImage;
typedef enum {
PP_PRIVATEFONTCHARSET_ANSI = 0,
PP_PRIVATEFONTCHARSET_DEFAULT = 1,
PP_PRIVATEFONTCHARSET_SYMBOL = 2,
PP_PRIVATEFONTCHARSET_MAC = 77,
PP_PRIVATEFONTCHARSET_SHIFTJIS = 128,
PP_PRIVATEFONTCHARSET_HANGUL = 129,
PP_PRIVATEFONTCHARSET_JOHAB = 130,
PP_PRIVATEFONTCHARSET_GB2312 =134,
PP_PRIVATEFONTCHARSET_CHINESEBIG5 = 136,
PP_PRIVATEFONTCHARSET_GREEK = 161,
PP_PRIVATEFONTCHARSET_TURKISH = 162,
PP_PRIVATEFONTCHARSET_VIETNAMESE = 163,
PP_PRIVATEFONTCHARSET_HEBREW = 177,
PP_PRIVATEFONTCHARSET_ARABIC = 178,
PP_PRIVATEFONTCHARSET_BALTIC = 186,
PP_PRIVATEFONTCHARSET_RUSSIAN = 204,
PP_PRIVATEFONTCHARSET_THAI = 222,
PP_PRIVATEFONTCHARSET_EASTEUROPE = 238,
PP_PRIVATEFONTCHARSET_OEM = 255
} PP_PrivateFontCharset;
struct PP_PrivateFontFileDescription {
const char* face;
uint32_t weight;
bool italic;
};
struct PP_PrivateFindResult {
int start_index;
int length;
};
struct PPB_Private {
// Returns a localized string.
PP_Var (*GetLocalizedString)(PP_Module module, PP_ResourceString string_id);
// Returns a resource image.
PP_Resource (*GetResourceImage)(PP_Module module,
PP_ResourceImage image_id);
// Returns a resource identifying a font file corresponding to the given font
// request after applying the browser-specific fallback.
//
// Currently Linux-only.
PP_Resource (*GetFontFileWithFallback)(
PP_Module module,
const PP_FontDescription_Dev* description,
PP_PrivateFontCharset charset);
// Given a resource previously returned by GetFontFileWithFallback, returns
// a pointer to the requested font table. Linux only.
bool (*GetFontTableForPrivateFontFile)(PP_Resource font_file,
uint32_t table,
void* output,
uint32_t* output_length);
// Search the given string using ICU. Use PPB_Core's MemFree on results when
// done.
void (*SearchString)(
PP_Module module,
const unsigned short* string,
const unsigned short* term,
bool case_sensitive,
PP_PrivateFindResult** results,
int* count);
// Since WebFrame doesn't know about Pepper requests, it'll think the page has
// finished loading even if there are outstanding requests by the plugin.
// Take this out once WebFrame knows about requests by pepper plugins.
void (*DidStartLoading)(PP_Instance instance);
void (*DidStopLoading)(PP_Instance instance);
// Disables the given command (i.e. print/copy).
void (*DisableCommand)(PP_Instance instance, int command_id);
};
#endif // WEBKIT_GLUE_PLUGINS_PPB_PRIVATE_H_
|