summaryrefslogtreecommitdiff
path: root/content/content.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-04-18 23:04:16 +0100
committerVincent Sanders <vince@kyllikki.org>2016-04-18 23:04:16 +0100
commit392307bb1fdf4186f26300631fe3710d895cf7ce (patch)
tree5a55cf451925bb4b00addcc69942f0678a0ee33e /content/content.h
parent34f6aa13234a618c3b1add75899af2ca1f6a08e9 (diff)
downloadnetsurf-392307bb1fdf4186f26300631fe3710d895cf7ce.tar.gz
netsurf-392307bb1fdf4186f26300631fe3710d895cf7ce.tar.bz2
reduce content header interdependancy
Diffstat (limited to 'content/content.h')
-rw-r--r--content/content.h20
1 files changed, 3 insertions, 17 deletions
diff --git a/content/content.h b/content/content.h
index 6c05df9c5..cdd7283cc 100644
--- a/content/content.h
+++ b/content/content.h
@@ -26,19 +26,14 @@
#ifndef _NETSURF_CONTENT_CONTENT_H_
#define _NETSURF_CONTENT_CONTENT_H_
-#include <stdbool.h>
-#include <stdio.h>
-
#include <libwapcaplet/libwapcaplet.h>
-#include "utils/config.h"
#include "utils/errors.h"
-#include "utils/http.h"
#include "content/content_factory.h"
#include "content/content_type.h"
-#include "desktop/search.h"
-#include "desktop/mouse.h"
-#include "desktop/plot_style.h"
+#include "desktop/search.h" /* search flags enum */
+#include "desktop/mouse.h" /* mouse state enums */
+#include "desktop/plot_style.h" /* color typedef */
struct browser_window;
struct browser_window_features;
@@ -318,15 +313,6 @@ void content_search(struct hlcache_handle *h, void *context,
void content_search_clear(struct hlcache_handle *h);
/**
- * Dump debug information to file.
- *
- * \param h content handle to debug.
- * \param f File to write output to.
- * \param op Debug operation type.
- */
-nserror content_debug_dump(struct hlcache_handle *h, FILE *f, enum content_debug op);
-
-/**
* Control debug con a content.
*
* \param h content handle to debug.