diff options
author | Jean-François Rameau <jframeau@cvs.gnome.org> | 2005-12-20 05:33:41 +0800 |
---|---|---|
committer | Jean-François Rameau <jframeau@src.gnome.org> | 2005-12-20 05:33:41 +0800 |
commit | 75b2ce17335253696b6e064e093af57902a7d39c (patch) | |
tree | 154e37415e375ecd7a83aa266fad30fd04c68733 /lib/Makefile.am | |
parent | 44f5c62d3fa80ae1db96104c51a3af7b44540354 (diff) | |
download | gsoc2013-epiphany-75b2ce17335253696b6e064e093af57902a7d39c.tar gsoc2013-epiphany-75b2ce17335253696b6e064e093af57902a7d39c.tar.gz gsoc2013-epiphany-75b2ce17335253696b6e064e093af57902a7d39c.tar.bz2 gsoc2013-epiphany-75b2ce17335253696b6e064e093af57902a7d39c.tar.lz gsoc2013-epiphany-75b2ce17335253696b6e064e093af57902a7d39c.tar.xz gsoc2013-epiphany-75b2ce17335253696b6e064e093af57902a7d39c.tar.zst gsoc2013-epiphany-75b2ce17335253696b6e064e093af57902a7d39c.zip |
Add some code so ad blocking should be more easy. Based on the fact that
2005-12-19 Jean-François Rameau <jframeau@cvs.gnome.org>
* embed/Makefile.am:
* embed/ephy-adblock-manager.c:
* embed/ephy-adblock-manager.h:
* embed/ephy-embed-shell.c: (ephy_embed_shell_finalize):
* embed/ephy-embed-shell.h:
* embed/mozilla/EphyContentPolicy.cpp: (EphyContentPolicy::ShouldLoad):
* lib/Makefile.am:
* lib/ephy-adblock.h:
* lib/ephy-adblock.c:
* src/ephy-shell.c: (ephy_shell_get_extensions_manager):
Add some code so ad blocking should be more easy. Based on the fact
that Epiphany already has its own content policy component (EphyContentPolicy).
The new design adds:
- an interface, EphyAdBlock
- a manager, EphyAdBlockManager, pointing to a blocker (possibly no one).
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 10a357a2e..44a9e3a7f 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -27,11 +27,13 @@ NOINST_H_FILES = \ ephy-zoom.h TYPES_H_FILES = \ + ephy-adblock.h \ ephy-dbus.h \ ephy-node.h \ ephy-state.h INST_H_FILES = \ + ephy-adblock.h \ ephy-dbus.h \ ephy-dialog.h \ ephy-loader.h \ @@ -41,6 +43,7 @@ INST_H_FILES = \ libephymisc_la_SOURCES = \ eel-gconf-extensions.c \ + ephy-adblock.c \ ephy-dbus.c \ ephy-debug.c \ ephy-dialog.c \ |