diff options
author | Christian Persch <chpe@src.gnome.org> | 2008-02-26 05:06:48 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2008-02-26 05:06:48 +0800 |
commit | 3e86e9015735ecf1e2698c29fe4c8fa618424138 (patch) | |
tree | 80a3a3982ca42b2b4e447d301a0dc170ead708aa /embed/ephy-adblock.h | |
parent | 1d5dcb8f9617d724db9345a8c14f2a5d6909251e (diff) | |
download | gsoc2013-epiphany-3e86e9015735ecf1e2698c29fe4c8fa618424138.tar.gz gsoc2013-epiphany-3e86e9015735ecf1e2698c29fe4c8fa618424138.tar.zst gsoc2013-epiphany-3e86e9015735ecf1e2698c29fe4c8fa618424138.zip |
Add new types from xr 1.9.
svn path=/trunk/; revision=7986
Diffstat (limited to 'embed/ephy-adblock.h')
-rw-r--r-- | embed/ephy-adblock.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/embed/ephy-adblock.h b/embed/ephy-adblock.h index 691594b1c..4ecadd25e 100644 --- a/embed/ephy-adblock.h +++ b/embed/ephy-adblock.h @@ -54,7 +54,15 @@ typedef enum AD_URI_CHECK_TYPE_SUBDOCUMENT = 7U, /* Indicates a document contained within another document (e.g., IFRAMEs, FRAMES, and OBJECTs) */ - AD_URI_CHECK_TYPE_REFRESH = 8U /* Indicates a timed refresh */ + AD_URI_CHECK_TYPE_REFRESH = 8U, /* Indicates a timed refresh */ + + AD_URI_CHECK_TYPE_XBEL = 9U, /* Indicates an XBL binding request, + triggered either by -moz-binding CSS + property or Document.addBinding method */ + AD_URI_CHECK_TYPE_PING = 10U, /* Indicates a ping triggered by a click on + <A PING="..."> element */ + AD_URI_CHECK_TYPE_XMLHTTPREQUEST = 11U, /* Indicates a XMLHttpRequest */ + AD_URI_CHECK_TYPE_OBJECT_SUBREQUEST = 12U /* Indicates a request by a plugin */ } AdUriCheckType; typedef struct _EphyAdBlock EphyAdBlock; |