summaryrefslogtreecommitdiff
path: root/content/fetchers
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-10-16 09:48:09 +0100
committerVincent Sanders <vince@kyllikki.org>2014-10-16 22:33:43 +0100
commitd06df231bc7c49e0f46ffc8fc8674d0717dff202 (patch)
treeeb51dc949f5e062c6a9b4adef33adbe591e99518 /content/fetchers
parentab7f3e31800ade0cec9c071e61cc001ee9470f69 (diff)
downloadnetsurf-d06df231bc7c49e0f46ffc8fc8674d0717dff202.tar.gz
netsurf-d06df231bc7c49e0f46ffc8fc8674d0717dff202.tar.bz2
Update the core to use the split operations table headers
Second in the series to decouple the core API usage from the frontends.
Diffstat (limited to 'content/fetchers')
-rw-r--r--content/fetchers/curl.c3
-rw-r--r--content/fetchers/file.c9
-rw-r--r--content/fetchers/resource.c3
3 files changed, 11 insertions, 4 deletions
diff --git a/content/fetchers/curl.c b/content/fetchers/curl.c
index b3a4b9f38..df48d8b99 100644
--- a/content/fetchers/curl.c
+++ b/content/fetchers/curl.c
@@ -41,7 +41,6 @@
#include <libwapcaplet/libwapcaplet.h>
#include "utils/config.h"
-#include "desktop/gui_factory.h"
#include "utils/corestrings.h"
#include "utils/nsoption.h"
#include "utils/log.h"
@@ -50,6 +49,8 @@
#include "utils/ring.h"
#include "utils/useragent.h"
#include "utils/file.h"
+#include "desktop/gui_fetch.h"
+#include "desktop/gui_internal.h"
#include "content/fetch.h"
#include "content/fetchers.h"
diff --git a/content/fetchers/file.c b/content/fetchers/file.c
index acb30c07a..eced97f6f 100644
--- a/content/fetchers/file.c
+++ b/content/fetchers/file.c
@@ -16,7 +16,11 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-/* file: URL handling. Based on the data fetcher by Rob Kendrick */
+/**
+ * \file
+ *
+ * file scheme URL handling. Based on the data fetcher by Rob Kendrick
+ */
#include "utils/config.h"
@@ -42,7 +46,6 @@
#include <libwapcaplet/libwapcaplet.h>
-#include "desktop/gui_factory.h"
#include "utils/corestrings.h"
#include "utils/nsoption.h"
#include "utils/errors.h"
@@ -51,6 +54,8 @@
#include "utils/utils.h"
#include "utils/ring.h"
#include "utils/file.h"
+#include "desktop/gui_fetch.h"
+#include "desktop/gui_internal.h"
#include "content/dirlist.h"
#include "content/fetch.h"
diff --git a/content/fetchers/resource.c b/content/fetchers/resource.c
index 18e302140..723d09481 100644
--- a/content/fetchers/resource.c
+++ b/content/fetchers/resource.c
@@ -44,7 +44,8 @@
#include "utils/messages.h"
#include "utils/utils.h"
#include "utils/ring.h"
-#include "desktop/gui_factory.h"
+#include "desktop/gui_fetch.h"
+#include "desktop/gui_internal.h"
#include "content/fetch.h"
#include "content/fetchers.h"