18e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project/*
2cad810f21b803229eb11403f9209855525a25d57Steve Block * Copyright (C) 2007, 2008, 2009 Holger Hans Peter Freyther
3cad810f21b803229eb11403f9209855525a25d57Steve Block * Copyright (C) 2008 Jan Michael C. Alonzo
4cad810f21b803229eb11403f9209855525a25d57Steve Block * Copyright (C) 2008 Collabora Ltd.
5dcc8cf2e65d1aa555cce12431a16547e66b469eeSteve Block * Copyright (C) 2010 Igalia S.L.
68e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
78e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * This library is free software; you can redistribute it and/or
88e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * modify it under the terms of the GNU Library General Public
98e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * License as published by the Free Software Foundation; either
108e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * version 2 of the License, or (at your option) any later version.
118e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
128e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * This library is distributed in the hope that it will be useful,
138e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * but WITHOUT ANY WARRANTY; without even the implied warranty of
148e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
158e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Library General Public License for more details.
168e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
178e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * You should have received a copy of the GNU Library General Public License
188e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * along with this library; see the file COPYING.LIB.  If not, write to
198e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
208e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Boston, MA 02110-1301, USA.
218e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project */
228e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
23cad810f21b803229eb11403f9209855525a25d57Steve Block#ifndef webkitglobalsprivate_h
24cad810f21b803229eb11403f9209855525a25d57Steve Block#define webkitglobalsprivate_h
258e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
26dcc8cf2e65d1aa555cce12431a16547e66b469eeSteve Block#include <glib.h>
278e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
28cad810f21b803229eb11403f9209855525a25d57Steve Block#define WEBKIT_PARAM_READABLE ((GParamFlags)(G_PARAM_READABLE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB))
29cad810f21b803229eb11403f9209855525a25d57Steve Block#define WEBKIT_PARAM_READWRITE ((GParamFlags)(G_PARAM_READWRITE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB))
30cad810f21b803229eb11403f9209855525a25d57Steve Block
31cad810f21b803229eb11403f9209855525a25d57Steve Blocknamespace WebKit {
32cad810f21b803229eb11403f9209855525a25d57Steve Block
33cad810f21b803229eb11403f9209855525a25d57Steve Blockclass PasteboardHelperGtk;
34cad810f21b803229eb11403f9209855525a25d57Steve BlockPasteboardHelperGtk* pasteboardHelperInstance();
35cad810f21b803229eb11403f9209855525a25d57Steve Block
36dcc8cf2e65d1aa555cce12431a16547e66b469eeSteve Block}
378e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
38cad810f21b803229eb11403f9209855525a25d57Steve Blockextern "C" {
39cad810f21b803229eb11403f9209855525a25d57Steve Block
40cad810f21b803229eb11403f9209855525a25d57Steve Blockvoid webkitInit();
41cad810f21b803229eb11403f9209855525a25d57Steve Block
428e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project}
438e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
44cad810f21b803229eb11403f9209855525a25d57Steve Block#endif
45