blob: 513594718077646724b876ccd6720e37f2159241 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*
* Copyright (C) 2014 Igalia S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef WebKitDOMCustomUnstable_h
#define WebKitDOMCustomUnstable_h
#ifdef WEBKIT_DOM_USE_UNSTABLE_API
#include <webkitdom/webkitdomdefines-unstable.h>
G_BEGIN_DECLS
/**
* webkit_dom_dom_window_get_webkit_namespace:
* @self: A #WebKitDOMDOMWindow
*
* Returns: (transfer full): A #WebKitDOMWebKitNamespace
*
* Stability: Unstable
* Since: 2.8
*/
WEBKIT_API WebKitDOMWebKitNamespace *
webkit_dom_dom_window_get_webkit_namespace(WebKitDOMDOMWindow* self);
/**
* webkit_dom_user_message_handlers_namespace_get_handler:
* @self: A #WebKitDOMUserMessageHandlersNamespace
* @name: a #gchar
*
* Returns: (transfer full): A #WebKitDOMUserMessageHandler
*
* Stability: Unstable
* Since: 2.8
*/
WEBKIT_API WebKitDOMUserMessageHandler *
webkit_dom_user_message_handlers_namespace_get_handler(WebKitDOMUserMessageHandlersNamespace* self, const gchar* name);
/**
* webkit_dom_html_link_element_set_sizes:
* @self: A #WebKitDOMHTMLLinkElement
* @value: a #gchar
*
* Stability: Unstable
* Since: 2.8
*/
WEBKIT_API void
webkit_dom_html_link_element_set_sizes(WebKitDOMHTMLLinkElement* self, const gchar* value);
G_END_DECLS
#endif /* WEBKIT_DOM_USE_UNSTABLE_API */
#endif
|