WebKitDOMDocument.h | WebKitDOMDocument.h | |||
---|---|---|---|---|
skipping to change at line 480 | skipping to change at line 480 | |||
/** | /** | |||
* webkit_dom_document_webkit_get_named_flows: | * webkit_dom_document_webkit_get_named_flows: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): A #WebKitDOMDOMNamedFlowCollection | * Returns: (transfer none): A #WebKitDOMDOMNamedFlowCollection | |||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMNamedFlowCollection* | WEBKIT_API WebKitDOMDOMNamedFlowCollection* | |||
webkit_dom_document_webkit_get_named_flows(WebKitDOMDocument* self); | webkit_dom_document_webkit_get_named_flows(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_create_touch: | ||||
* @self: A #WebKitDOMDocument | ||||
* @window: A #WebKitDOMDOMWindow | ||||
* @target: A #WebKitDOMEventTarget | ||||
* @identifier: A #glong | ||||
* @pageX: A #glong | ||||
* @pageY: A #glong | ||||
* @screenX: A #glong | ||||
* @screenY: A #glong | ||||
* @webkitRadiusX: A #glong | ||||
* @webkitRadiusY: A #glong | ||||
* @webkitRotationAngle: A #gfloat | ||||
* @webkitForce: A #gfloat | ||||
* @error: #GError | ||||
* | ||||
* Returns: (transfer none): A #WebKitDOMTouch | ||||
**/ | ||||
WEBKIT_API WebKitDOMTouch* | ||||
webkit_dom_document_create_touch(WebKitDOMDocument* self, WebKitDOMDOMWindo | ||||
w* window, WebKitDOMEventTarget* target, glong identifier, glong pageX, glo | ||||
ng pageY, glong screenX, glong screenY, glong webkitRadiusX, glong webkitRa | ||||
diusY, gfloat webkitRotationAngle, gfloat webkitForce, GError** error); | ||||
/** | ||||
* webkit_dom_document_get_doctype: | * webkit_dom_document_get_doctype: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): A #WebKitDOMDocumentType | * Returns: (transfer none): A #WebKitDOMDocumentType | |||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocumentType* | WEBKIT_API WebKitDOMDocumentType* | |||
webkit_dom_document_get_doctype(WebKitDOMDocument* self); | webkit_dom_document_get_doctype(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_implementation: | * webkit_dom_document_get_implementation: | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 24 lines changed or added | |||
WebKitVersion.h | WebKitVersion.h | |||
---|---|---|---|---|
skipping to change at line 56 | skipping to change at line 56 | |||
*/ | */ | |||
#define WEBKIT_MINOR_VERSION (3) | #define WEBKIT_MINOR_VERSION (3) | |||
/** | /** | |||
* WEBKIT_MICRO_VERSION: | * WEBKIT_MICRO_VERSION: | |||
* | * | |||
* Like webkit_get_micro_version(), but from the headers used at | * Like webkit_get_micro_version(), but from the headers used at | |||
* application compile time, rather than from the library linked | * application compile time, rather than from the library linked | |||
* against at application run time. | * against at application run time. | |||
*/ | */ | |||
#define WEBKIT_MICRO_VERSION (5) | #define WEBKIT_MICRO_VERSION (92) | |||
/** | /** | |||
* WEBKIT_CHECK_VERSION: | * WEBKIT_CHECK_VERSION: | |||
* @major: major version (e.g. 1 for version 1.2.5) | * @major: major version (e.g. 1 for version 1.2.5) | |||
* @minor: minor version (e.g. 2 for version 1.2.5) | * @minor: minor version (e.g. 2 for version 1.2.5) | |||
* @micro: micro version (e.g. 5 for version 1.2.5) | * @micro: micro version (e.g. 5 for version 1.2.5) | |||
* | * | |||
* Returns: %TRUE if the version of the WebKit header files | * Returns: %TRUE if the version of the WebKit header files | |||
* is the same as or newer than the passed-in version. | * is the same as or newer than the passed-in version. | |||
*/ | */ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
WebKitWebContext.h | WebKitWebContext.h | |||
---|---|---|---|---|
skipping to change at line 72 | skipping to change at line 72 | |||
WEBKIT_CACHE_MODEL_DOCUMENT_BROWSER | WEBKIT_CACHE_MODEL_DOCUMENT_BROWSER | |||
} WebKitCacheModel; | } WebKitCacheModel; | |||
/** | /** | |||
* WebKitProcessModel: | * WebKitProcessModel: | |||
* @WEBKIT_PROCESS_MODEL_SHARED_SECONDARY_PROCESS: Use a single process to | * @WEBKIT_PROCESS_MODEL_SHARED_SECONDARY_PROCESS: Use a single process to | |||
* perform content rendering. The process is shared among all the | * perform content rendering. The process is shared among all the | |||
* #WebKitWebView instances created by the application: if the process | * #WebKitWebView instances created by the application: if the process | |||
* hangs or crashes all the web views in the application will be affected . | * hangs or crashes all the web views in the application will be affected . | |||
* This is the default process model, and it should suffice for most case s. | * This is the default process model, and it should suffice for most case s. | |||
* @WEBKIT_PROCESS_MODEL_ONE_SECONDARY_PROCESS_PER_WEB_VIEW: Use one proces | * @WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES: Use one process | |||
s | * for each #WebKitWebView, while still allowing for some of them to | |||
* for each #WebKitWebView. The main advantage of this process model is t | * share a process in certain situations. The main advantage | |||
hat | * of this process model is that the rendering process for a web view | |||
* the rendering process for a web view can crash while the rest of the | * can crash while the rest of the views keep working normally. This | |||
* views keep working normally. This process model is indicated for | * process model is indicated for applications which may use a number | |||
* applications which may use a number of web views and the content of | * of web views and the content of in each must not interfere with the | |||
* in each must not interfere with the rest -- for example a full-fledged | * rest — for example a full-fledged web browser with support for | |||
* web browser with support for multiple tabs. | * multiple tabs. | |||
* | * | |||
* Enum values used for determining the #WebKitWebContext process model. | * Enum values used for determining the #WebKitWebContext process model. | |||
* | * | |||
* Since: 2.4 | * Since: 2.4 | |||
*/ | */ | |||
typedef enum { | typedef enum { | |||
WEBKIT_PROCESS_MODEL_SHARED_SECONDARY_PROCESS, | WEBKIT_PROCESS_MODEL_SHARED_SECONDARY_PROCESS, | |||
WEBKIT_PROCESS_MODEL_ONE_SECONDARY_PROCESS_PER_WEB_VIEW, | WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES, | |||
} WebKitProcessModel; | } WebKitProcessModel; | |||
/** | /** | |||
* WebKitTLSErrorsPolicy: | * WebKitTLSErrorsPolicy: | |||
* @WEBKIT_TLS_ERRORS_POLICY_IGNORE: Ignore TLS errors. | * @WEBKIT_TLS_ERRORS_POLICY_IGNORE: Ignore TLS errors. | |||
* @WEBKIT_TLS_ERRORS_POLICY_FAIL: TLS errors will emit | * @WEBKIT_TLS_ERRORS_POLICY_FAIL: TLS errors will emit | |||
* #WebKitWebView::load-failed-with-tls-errors and, if the signal is hand led, | * #WebKitWebView::load-failed-with-tls-errors and, if the signal is hand led, | |||
* finish the load. In case the signal is not handled, | * finish the load. In case the signal is not handled, | |||
* #WebKitWebView::load-failed is emitted before the load finishes. | * #WebKitWebView::load-failed is emitted before the load finishes. | |||
* | * | |||
End of changes. 2 change blocks. | ||||
10 lines changed or deleted | 10 lines changed or added | |||
WebKitWebView.h | WebKitWebView.h | |||
---|---|---|---|---|
skipping to change at line 269 | skipping to change at line 269 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_web_view_get_type (void); | webkit_web_view_get_type (void); | |||
WEBKIT_API GtkWidget * | WEBKIT_API GtkWidget * | |||
webkit_web_view_new (void); | webkit_web_view_new (void); | |||
WEBKIT_API GtkWidget * | WEBKIT_API GtkWidget * | |||
webkit_web_view_new_with_context (WebKitWebContext *context); | webkit_web_view_new_with_context (WebKitWebContext *context); | |||
WEBKIT_API GtkWidget * | WEBKIT_API GtkWidget * | |||
webkit_web_view_new_with_related_view (WebKitWebView | ||||
*web_view); | ||||
WEBKIT_API GtkWidget * | ||||
webkit_web_view_new_with_group (WebKitWebViewGroup *group); | webkit_web_view_new_with_group (WebKitWebViewGroup *group); | |||
WEBKIT_API WebKitWebContext * | WEBKIT_API WebKitWebContext * | |||
webkit_web_view_get_context (WebKitWebView *web_view); | webkit_web_view_get_context (WebKitWebView *web_view); | |||
WEBKIT_API WebKitWebViewGroup * | WEBKIT_API WebKitWebViewGroup * | |||
webkit_web_view_get_group (WebKitWebView *web_view); | webkit_web_view_get_group (WebKitWebView *web_view); | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_web_view_load_uri (WebKitWebView *web_view, | webkit_web_view_load_uri (WebKitWebView *web_view, | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
webkit-web-extension.h | webkit-web-extension.h | |||
---|---|---|---|---|
skipping to change at line 20 | skipping to change at line 20 | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* Library General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU Library General Public Licens e | * You should have received a copy of the GNU Library General Public Licens e | |||
* along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
* Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#ifndef __WebKitWebExtension_h | #ifdef __WEBKIT_2_H__ | |||
#define __WebKitWebExtension_h | #error "Headers <webkit2/webkit2.h> and <webkit2/webkit-web-extension.h> ca | |||
nnot be included together." | ||||
#endif | ||||
#ifndef __WEBKIT_WEB_EXTENSION_H__ | ||||
#define __WEBKIT_WEB_EXTENSION_H__ | ||||
#define __WEBKIT_WEB_EXTENSION_H_INSIDE__ | #define __WEBKIT_WEB_EXTENSION_H_INSIDE__ | |||
#include <webkit2/WebKitFrame.h> | #include <webkit2/WebKitFrame.h> | |||
#include <webkit2/WebKitScriptWorld.h> | #include <webkit2/WebKitScriptWorld.h> | |||
#include <webkit2/WebKitURIRequest.h> | #include <webkit2/WebKitURIRequest.h> | |||
#include <webkit2/WebKitURIResponse.h> | #include <webkit2/WebKitURIResponse.h> | |||
#include <webkit2/WebKitWebExtension.h> | #include <webkit2/WebKitWebExtension.h> | |||
#include <webkit2/WebKitWebPage.h> | #include <webkit2/WebKitWebPage.h> | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 7 lines changed or added | |||
webkit2.h | webkit2.h | |||
---|---|---|---|---|
skipping to change at line 21 | skipping to change at line 21 | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* Library General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU Library General Public Licens e | * You should have received a copy of the GNU Library General Public Licens e | |||
* along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
* Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#ifndef __WEBKIT2_H__ | #ifdef __WEBKIT_WEB_EXTENSION_H__ | |||
#define __WEBKIT2_H__ | #error "Headers <webkit2/webkit2.h> and <webkit2/webkit-web-extension.h> ca | |||
nnot be included together." | ||||
#endif | ||||
#ifndef __WEBKIT_2_H__ | ||||
#define __WEBKIT_2_H__ | ||||
#define __WEBKIT2_H_INSIDE__ | #define __WEBKIT2_H_INSIDE__ | |||
#include <webkit2/WebKitAuthenticationRequest.h> | #include <webkit2/WebKitAuthenticationRequest.h> | |||
#include <webkit2/WebKitBackForwardList.h> | #include <webkit2/WebKitBackForwardList.h> | |||
#include <webkit2/WebKitBackForwardListItem.h> | #include <webkit2/WebKitBackForwardListItem.h> | |||
#include <webkit2/WebKitCertificateInfo.h> | #include <webkit2/WebKitCertificateInfo.h> | |||
#include <webkit2/WebKitContextMenu.h> | #include <webkit2/WebKitContextMenu.h> | |||
#include <webkit2/WebKitContextMenuActions.h> | #include <webkit2/WebKitContextMenuActions.h> | |||
#include <webkit2/WebKitContextMenuItem.h> | #include <webkit2/WebKitContextMenuItem.h> | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 7 lines changed or added | |||
webkitdomdefines.h | webkitdomdefines.h | |||
---|---|---|---|---|
skipping to change at line 470 | skipping to change at line 470 | |||
typedef struct _WebKitDOMTextTrackCueList WebKitDOMTextTrackCueList; | typedef struct _WebKitDOMTextTrackCueList WebKitDOMTextTrackCueList; | |||
typedef struct _WebKitDOMTextTrackCueListClass WebKitDOMTextTrackCueListCla ss; | typedef struct _WebKitDOMTextTrackCueListClass WebKitDOMTextTrackCueListCla ss; | |||
typedef struct _WebKitDOMTextTrackList WebKitDOMTextTrackList; | typedef struct _WebKitDOMTextTrackList WebKitDOMTextTrackList; | |||
typedef struct _WebKitDOMTextTrackListClass WebKitDOMTextTrackListClass; | typedef struct _WebKitDOMTextTrackListClass WebKitDOMTextTrackListClass; | |||
typedef struct _WebKitDOMTimeRanges WebKitDOMTimeRanges; | typedef struct _WebKitDOMTimeRanges WebKitDOMTimeRanges; | |||
typedef struct _WebKitDOMTimeRangesClass WebKitDOMTimeRangesClass; | typedef struct _WebKitDOMTimeRangesClass WebKitDOMTimeRangesClass; | |||
typedef struct _WebKitDOMTouch WebKitDOMTouch; | ||||
typedef struct _WebKitDOMTouchClass WebKitDOMTouchClass; | ||||
typedef struct _WebKitDOMTrackEvent WebKitDOMTrackEvent; | typedef struct _WebKitDOMTrackEvent WebKitDOMTrackEvent; | |||
typedef struct _WebKitDOMTrackEventClass WebKitDOMTrackEventClass; | typedef struct _WebKitDOMTrackEventClass WebKitDOMTrackEventClass; | |||
typedef struct _WebKitDOMTreeWalker WebKitDOMTreeWalker; | typedef struct _WebKitDOMTreeWalker WebKitDOMTreeWalker; | |||
typedef struct _WebKitDOMTreeWalkerClass WebKitDOMTreeWalkerClass; | typedef struct _WebKitDOMTreeWalkerClass WebKitDOMTreeWalkerClass; | |||
typedef struct _WebKitDOMUIEvent WebKitDOMUIEvent; | typedef struct _WebKitDOMUIEvent WebKitDOMUIEvent; | |||
typedef struct _WebKitDOMUIEventClass WebKitDOMUIEventClass; | typedef struct _WebKitDOMUIEventClass WebKitDOMUIEventClass; | |||
typedef struct _WebKitDOMValidityState WebKitDOMValidityState; | typedef struct _WebKitDOMValidityState WebKitDOMValidityState; | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 3 lines changed or added | |||
webkitversion.h | webkitversion.h | |||
---|---|---|---|---|
skipping to change at line 30 | skipping to change at line 30 | |||
#ifndef webkitversion_h | #ifndef webkitversion_h | |||
#define webkitversion_h | #define webkitversion_h | |||
#include <glib.h> | #include <glib.h> | |||
#include <webkit/webkitdefines.h> | #include <webkit/webkitdefines.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
#define WEBKIT_MAJOR_VERSION (2) | #define WEBKIT_MAJOR_VERSION (2) | |||
#define WEBKIT_MINOR_VERSION (3) | #define WEBKIT_MINOR_VERSION (3) | |||
#define WEBKIT_MICRO_VERSION (5) | #define WEBKIT_MICRO_VERSION (92) | |||
#define WEBKIT_USER_AGENT_MAJOR_VERSION (538) | #define WEBKIT_USER_AGENT_MAJOR_VERSION (538) | |||
#define WEBKIT_USER_AGENT_MINOR_VERSION (15) | #define WEBKIT_USER_AGENT_MINOR_VERSION (15) | |||
/** | /** | |||
* WEBKITGTK_API_VERSION: (skip) | * WEBKITGTK_API_VERSION: (skip) | |||
*/ | */ | |||
#define WEBKITGTK_API_VERSION (3.0) | #define WEBKITGTK_API_VERSION (3.0) | |||
#define WEBKIT_CHECK_VERSION(major, minor, micro) \ | #define WEBKIT_CHECK_VERSION(major, minor, micro) \ | |||
(WEBKIT_MAJOR_VERSION > (major) || \ | (WEBKIT_MAJOR_VERSION > (major) || \ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||