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

Side by Side Diff: third_party/harfbuzz/contrib/harfbuzz-unicode.c

Issue 7595001: Update (old) harfbuzz to ToT (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
1 #include <stdint.h> 1 #include <stdint.h>
2 #include <stdlib.h> 2 #include <stdlib.h>
3 3
4 #include <harfbuzz-external.h> 4 #include <harfbuzz-external.h>
5 #include <harfbuzz-impl.h> 5 #include <harfbuzz-impl.h>
6 #include <harfbuzz-shaper.h> 6 #include <harfbuzz-shaper.h>
7 #include "harfbuzz-unicode.h" 7 #include "harfbuzz-unicode.h"
8 8
9 #include "tables/grapheme-break-properties.h" 9 #include "tables/grapheme-break-properties.h"
10 #include "tables/mirroring-properties.h" 10 #include "tables/mirroring-properties.h"
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 mirroring_properties_count, 257 mirroring_properties_count,
258 sizeof(struct mirroring_property), 258 sizeof(struct mirroring_property),
259 mirroring_property_cmp); 259 mirroring_property_cmp);
260 if (!mprop) 260 if (!mprop)
261 return ch; 261 return ch;
262 262
263 return ((const struct mirroring_property *) mprop)->b; 263 return ((const struct mirroring_property *) mprop)->b;
264 } 264 }
265 265
266 void * 266 void *
267 HB_Library_Resolve(const char *library, const char *symbol) { 267 HB_Library_Resolve(const char *library, int version, const char *symbol) {
268 abort(); 268 abort();
269 return NULL; 269 return NULL;
270 } 270 }
271
272 void *
273 HB_TextCodecForMib(int mib) {
274 abort();
275 return NULL;
276 }
277
278 char *
279 HB_TextCodec_ConvertFromUnicode(void *codec, const HB_UChar16 *unicode, hb_uint3 2 length, hb_uint32 *outputLength) {
280 abort();
281 return NULL;
282 }
283
284 void
285 HB_TextCodec_FreeResult(char *v) {
286 abort();
287 }
OLDNEW
« no previous file with comments | « third_party/harfbuzz/chromium.patch ('k') | third_party/harfbuzz/contrib/harfbuzz-unicode-tables.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698