chromium/ui/base/glib/glib_integers.h

// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_BASE_GLIB_GLIB_INTEGERS_H_
#define UI_BASE_GLIB_GLIB_INTEGERS_H_

#include <cstdint>

// GLib/GObject/Gtk all use their own integer typedefs. They are copied here
// for forward declaration reasons so we don't pull in all of glib/gtypes.h
// when we just need a gpointer.
gchar;
gshort;
glong;
gint;
gboolean;
guchar;
gushort;
gulong;
guint;
gdouble;

gint64;

gpointer;
gconstpointer;

#endif  // UI_BASE_GLIB_GLIB_INTEGERS_H_