summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2011-10-06 23:31:55 +0000
committerVincent Sanders <vince@netsurf-browser.org>2011-10-06 23:31:55 +0000
commit52ad2c1e2523b28aa5363656fbbef20e97665cce (patch)
tree17fa08828007484f14e432f70347064b76108b95 /content
parent3fde9589c1ba89d16ec4d294fb308631f0257e3a (diff)
downloadnetsurf-52ad2c1e2523b28aa5363656fbbef20e97665cce.tar.gz
netsurf-52ad2c1e2523b28aa5363656fbbef20e97665cce.tar.bz2
initial favicon support
svn path=/trunk/netsurf/; revision=12975
Diffstat (limited to 'content')
-rw-r--r--content/content.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/content/content.h b/content/content.h
index b288cb61e..eb8fbe689 100644
--- a/content/content.h
+++ b/content/content.h
@@ -72,7 +72,7 @@ typedef enum {
CONTENT_MSG_REDRAW, /**< needs redraw (eg. new animation frame) */
CONTENT_MSG_REFRESH, /**< wants refresh */
CONTENT_MSG_DOWNLOAD, /**< download, not for display */
- CONTENT_MSG_FAVICON_REFRESH, /**< favicon has been refreshed (eg. new animation frame) */
+ CONTENT_MSG_LINK, /**< RFC5988 link */
} content_msg;
/** Extra data for some content_msg messages. */
@@ -96,6 +96,12 @@ union content_msg_data {
bool background;
/** Low-level cache handle, for CONTENT_MSG_DOWNLOAD */
struct llcache_handle *download;
+ /** rfc5988 link data CONTENT_MSG_RFC5988_LINK */
+ struct {
+ nsurl *url;
+ char *rel;
+ char *type;
+ } rfc5988_link;
};