summaryrefslogtreecommitdiff
path: root/render/html.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-01-02 12:04:04 +0000
committerJames Bursa <james@netsurf-browser.org>2004-01-02 12:04:04 +0000
commit825c81f03a226a85b48e77a761be2a7245b9f030 (patch)
tree6e32e858b6930fa2bdf43d0e7bf3678d41c5ae1a /render/html.h
parent9f2c43718b68c0b59623317627c22934f7132e40 (diff)
downloadnetsurf-825c81f03a226a85b48e77a761be2a7245b9f030.tar.gz
netsurf-825c81f03a226a85b48e77a761be2a7245b9f030.tar.bz2
[project @ 2004-01-02 12:04:04 by bursa]
Use memory pool for box tree. svn path=/import/netsurf/; revision=477
Diffstat (limited to 'render/html.h')
-rw-r--r--render/html.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/render/html.h b/render/html.h
index b48c35929..33385a78d 100644
--- a/render/html.h
+++ b/render/html.h
@@ -10,6 +10,7 @@
#include "netsurf/css/css.h"
#include "netsurf/render/box.h"
+#include "netsurf/utils/pool.h"
struct box;
struct browser_window;
@@ -49,6 +50,8 @@ struct content_html_data {
struct content *content;
struct box *box;
} *object;
+ pool box_pool; /**< Memory pool for box tree. */
+ pool string_pool; /**< Memory pool for strings. */
};
void html_create(struct content *c, const char *params[]);