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

Side by Side Diff: third_party/harfbuzz-ng/src/hb-gobject-enums.cc.tmpl

Issue 9223010: Update harfbuzz-ng to 1a5a91dc0d8bf4b72a2f22dc6300b06ad7000b79. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't use -M option for 'git diff' to patch correctly Created 8 years, 10 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
(Empty)
1 /*** BEGIN file-header ***/
2 /*
3 * Copyright © 2011 Google, Inc.
4 *
5 * This is part of HarfBuzz, a text shaping library.
6 *
7 * Permission is hereby granted, without written agreement and without
8 * license or royalty fees, to use, copy, modify, and distribute this
9 * software and its documentation for any purpose, provided that the
10 * above copyright notice and the following two paragraphs appear in
11 * all copies of this software.
12 *
13 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
14 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
15 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
16 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
17 * DAMAGE.
18 *
19 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
20 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
21 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
22 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
23 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
24 *
25 * Google Author(s): Behdad Esfahbod
26 */
27
28 #include "hb-private.hh"
29
30 /* g++ didn't like older gtype.h gcc-only code path. */
31 #include <glib.h>
32 #if !GLIB_CHECK_VERSION(2,29,16)
33 #undef __GNUC__
34 #undef __GNUC_MINOR__
35 #define __GNUC__ 2
36 #define __GNUC_MINOR__ 6
37 #endif
38
39 #include "hb-gobject.h"
40
41 /*** END file-header ***/
42
43 /*** BEGIN file-production ***/
44 /* enumerations from "@filename@" */
45 /*** END file-production ***/
46
47 /*** BEGIN value-header ***/
48 inline static /* TODO(behdad) disable these for now until we fix them... */
49 GType
50 @enum_name@_get_type (void)
51 {
52 static volatile gsize g_define_type_id__volatile = 0;
53
54 if (g_once_init_enter (&g_define_type_id__volatile))
55 {
56 static const G@Type@Value values[] = {
57 /*** END value-header ***/
58
59 /*** BEGIN value-production ***/
60 { @VALUENAME@, "@VALUENAME@", "@valuenick@" },
61 /*** END value-production ***/
62
63 /*** BEGIN value-tail ***/
64 { 0, NULL, NULL }
65 };
66 GType g_define_type_id =
67 g_@type@_register_static (g_intern_static_string ("@EnumName@"), values) ;
68 g_once_init_leave (&g_define_type_id__volatile, g_define_type_id);
69 }
70
71 return g_define_type_id__volatile;
72 }
73
74 /*** END value-tail ***/
OLDNEW
« no previous file with comments | « third_party/harfbuzz-ng/src/hb-gobject-enums.cc ('k') | third_party/harfbuzz-ng/src/hb-gobject-structs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698