summaryrefslogtreecommitdiff
path: root/monkey/thumbnail.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-10-17 09:27:58 +0100
committerVincent Sanders <vince@kyllikki.org>2014-10-17 09:27:58 +0100
commit7a6faf41994e1bd9a31112e7349221331e3fdc05 (patch)
tree6efdc04e2bbc28bfc0ce85454ea95af1f8af91a6 /monkey/thumbnail.c
parent388122d7e90b57fe76efa2c78f85219fd8cbba81 (diff)
downloadnetsurf-7a6faf41994e1bd9a31112e7349221331e3fdc05.tar.gz
netsurf-7a6faf41994e1bd9a31112e7349221331e3fdc05.tar.bz2
reduce uncesessary inclusion of browser.h and browser_private.h
Diffstat (limited to 'monkey/thumbnail.c')
-rw-r--r--monkey/thumbnail.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/monkey/thumbnail.c b/monkey/thumbnail.c
index bc78aca2d..61f5ee611 100644
--- a/monkey/thumbnail.c
+++ b/monkey/thumbnail.c
@@ -16,8 +16,12 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "monkey/browser.h"
+#include <stdint.h>
+
#include "desktop/thumbnail.h"
+#include "content/hlcache.h"
+
+#include "monkey/browser.h"
bool thumbnail_create(hlcache_handle *content, struct bitmap *bitmap,
nsurl *url)