From 44a1b75fe3664687238929c61e58399940d3f862 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 6 Dec 2012 19:31:17 +0000 Subject: add default action fetcher to binding parameters --- bindings/hubbub/parser.c | 11 ++++++----- bindings/hubbub/parser.h | 3 +++ 2 files changed, 9 insertions(+), 5 deletions(-) (limited to 'bindings') diff --git a/bindings/hubbub/parser.c b/bindings/hubbub/parser.c index 947c6f3..0c80a65 100644 --- a/bindings/hubbub/parser.c +++ b/bindings/hubbub/parser.c @@ -788,12 +788,13 @@ dom_hubbub_parser_create(dom_hubbub_parser_params *params, return (DOM_HUBBUB_HUBBUB_ERR | error); } - /* TODO: Just pass the dom_events_default_action_fetcher a NULL, - * we should pass the real function when we integrate libDOM with - * NetSurf */ + /* create DOM document */ err = dom_implementation_create_document(DOM_IMPLEMENTATION_HTML, - NULL, NULL, NULL, - NULL, &binding->doc); + NULL, + NULL, + NULL, + params->daf, + &binding->doc); if (err != DOM_NO_ERR) { hubbub_parser_destroy(binding->parser); free(binding); diff --git a/bindings/hubbub/parser.h b/bindings/hubbub/parser.h index 132cc86..54ad0c8 100644 --- a/bindings/hubbub/parser.h +++ b/bindings/hubbub/parser.h @@ -60,6 +60,9 @@ typedef struct dom_hubbub_parser_params { dom_msg msg; /**< Informational message function */ void *ctx; /**< Pointer to client-specific private data */ + + /** default action fetcher function */ + dom_events_default_action_fetcher daf; } dom_hubbub_parser_params; /* Create a Hubbub parser instance */ -- cgit v1.2.3