Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: third_party/harfbuzz-ng/src/hb-gobject-structs.h

Issue 2163983005: Roll HarfBuzz to 1.3.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/harfbuzz-ng/src/hb-ft.cc ('k') | third_party/harfbuzz-ng/src/hb-ot-font.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright © 2011 Google, Inc. 2 * Copyright © 2011 Google, Inc.
3 * 3 *
4 * This is part of HarfBuzz, a text shaping library. 4 * This is part of HarfBuzz, a text shaping library.
5 * 5 *
6 * Permission is hereby granted, without written agreement and without 6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this 7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the 8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in 9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software. 10 * all copies of this software.
(...skipping 23 matching lines...) Expand all
34 #include "hb.h" 34 #include "hb.h"
35 35
36 #include <glib-object.h> 36 #include <glib-object.h>
37 37
38 HB_BEGIN_DECLS 38 HB_BEGIN_DECLS
39 39
40 40
41 /* Object types */ 41 /* Object types */
42 42
43 /** 43 /**
44 * hb_gobject_blob_get_type:
45 *
44 * Since: 0.9.2 46 * Since: 0.9.2
45 **/ 47 **/
46 HB_EXTERN GType hb_gobject_blob_get_type (void); 48 HB_EXTERN GType hb_gobject_blob_get_type (void);
47 #define HB_GOBJECT_TYPE_BLOB (hb_gobject_blob_get_type ()) 49 #define HB_GOBJECT_TYPE_BLOB (hb_gobject_blob_get_type ())
48 50
49 /** 51 /**
52 * hb_gobject_buffer_get_type:
53 *
50 * Since: 0.9.2 54 * Since: 0.9.2
51 **/ 55 **/
52 HB_EXTERN GType hb_gobject_buffer_get_type (void); 56 HB_EXTERN GType hb_gobject_buffer_get_type (void);
53 #define HB_GOBJECT_TYPE_BUFFER (hb_gobject_buffer_get_type ()) 57 #define HB_GOBJECT_TYPE_BUFFER (hb_gobject_buffer_get_type ())
54 58
55 /** 59 /**
60 * hb_gobject_face_get_type:
61 *
56 * Since: 0.9.2 62 * Since: 0.9.2
57 **/ 63 **/
58 HB_EXTERN GType hb_gobject_face_get_type (void); 64 HB_EXTERN GType hb_gobject_face_get_type (void);
59 #define HB_GOBJECT_TYPE_FACE (hb_gobject_face_get_type ()) 65 #define HB_GOBJECT_TYPE_FACE (hb_gobject_face_get_type ())
60 66
61 /** 67 /**
68 * hb_gobject_font_get_type:
69 *
62 * Since: 0.9.2 70 * Since: 0.9.2
63 **/ 71 **/
64 HB_EXTERN GType hb_gobject_font_get_type (void); 72 HB_EXTERN GType hb_gobject_font_get_type (void);
65 #define HB_GOBJECT_TYPE_FONT (hb_gobject_font_get_type ()) 73 #define HB_GOBJECT_TYPE_FONT (hb_gobject_font_get_type ())
66 74
67 /** 75 /**
76 * hb_gobject_font_funcs_get_type:
77 *
68 * Since: 0.9.2 78 * Since: 0.9.2
69 **/ 79 **/
70 HB_EXTERN GType hb_gobject_font_funcs_get_type (void); 80 HB_EXTERN GType hb_gobject_font_funcs_get_type (void);
71 #define HB_GOBJECT_TYPE_FONT_FUNCS (hb_gobject_font_funcs_get_type ()) 81 #define HB_GOBJECT_TYPE_FONT_FUNCS (hb_gobject_font_funcs_get_type ())
72 82
73 HB_EXTERN GType hb_gobject_set_get_type (void); 83 HB_EXTERN GType hb_gobject_set_get_type (void);
74 #define HB_GOBJECT_TYPE_SET (hb_gobject_set_get_type ()) 84 #define HB_GOBJECT_TYPE_SET (hb_gobject_set_get_type ())
75 85
76 HB_EXTERN GType hb_gobject_shape_plan_get_type (void); 86 HB_EXTERN GType hb_gobject_shape_plan_get_type (void);
77 #define HB_GOBJECT_TYPE_SHAPE_PLAN (hb_gobject_shape_plan_get_type ()) 87 #define HB_GOBJECT_TYPE_SHAPE_PLAN (hb_gobject_shape_plan_get_type ())
78 88
79 /** 89 /**
90 * hb_gobject_unicode_funcs_get_type:
91 *
80 * Since: 0.9.2 92 * Since: 0.9.2
81 **/ 93 **/
82 HB_EXTERN GType hb_gobject_unicode_funcs_get_type (void); 94 HB_EXTERN GType hb_gobject_unicode_funcs_get_type (void);
83 #define HB_GOBJECT_TYPE_UNICODE_FUNCS (hb_gobject_unicode_funcs_get_type ()) 95 #define HB_GOBJECT_TYPE_UNICODE_FUNCS (hb_gobject_unicode_funcs_get_type ())
84 96
85 /* Value types */ 97 /* Value types */
86 98
87 HB_EXTERN GType hb_gobject_feature_get_type (void); 99 HB_EXTERN GType hb_gobject_feature_get_type (void);
88 #define HB_GOBJECT_TYPE_FEATURE (hb_gobject_feature_get_type ()) 100 #define HB_GOBJECT_TYPE_FEATURE (hb_gobject_feature_get_type ())
89 101
90 HB_EXTERN GType hb_gobject_glyph_info_get_type (void); 102 HB_EXTERN GType hb_gobject_glyph_info_get_type (void);
91 #define HB_GOBJECT_TYPE_GLYPH_INFO (hb_gobject_glyph_info_get_type ()) 103 #define HB_GOBJECT_TYPE_GLYPH_INFO (hb_gobject_glyph_info_get_type ())
92 104
93 HB_EXTERN GType hb_gobject_glyph_position_get_type (void); 105 HB_EXTERN GType hb_gobject_glyph_position_get_type (void);
94 #define HB_GOBJECT_TYPE_GLYPH_POSITION (hb_gobject_glyph_position_get_type ()) 106 #define HB_GOBJECT_TYPE_GLYPH_POSITION (hb_gobject_glyph_position_get_type ())
95 107
96 HB_EXTERN GType hb_gobject_segment_properties_get_type (void); 108 HB_EXTERN GType hb_gobject_segment_properties_get_type (void);
97 #define HB_GOBJECT_TYPE_SEGMENT_PROPERTIES (hb_gobject_segment_properties_get_ty pe ()) 109 #define HB_GOBJECT_TYPE_SEGMENT_PROPERTIES (hb_gobject_segment_properties_get_ty pe ())
98 110
99 HB_EXTERN GType hb_gobject_user_data_key_get_type (void); 111 HB_EXTERN GType hb_gobject_user_data_key_get_type (void);
100 #define HB_GOBJECT_TYPE_USER_DATA_KEY (hb_gobject_user_data_key_get_type ()) 112 #define HB_GOBJECT_TYPE_USER_DATA_KEY (hb_gobject_user_data_key_get_type ())
101 113
102 114
103 HB_END_DECLS 115 HB_END_DECLS
104 116
105 #endif /* HB_GOBJECT_H */ 117 #endif /* HB_GOBJECT_H */
OLDNEW
« no previous file with comments | « third_party/harfbuzz-ng/src/hb-ft.cc ('k') | third_party/harfbuzz-ng/src/hb-ot-font.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698