diff options
author | Crispin Flowerday <gnome@flowerday.cx> | 2006-01-22 20:35:30 +0800 |
---|---|---|
committer | Crispin Flowerday <crispin@src.gnome.org> | 2006-01-22 20:35:30 +0800 |
commit | 3b221e541fef2c6c4f1948eda8be95f4d7bc941e (patch) | |
tree | d5d461559d21796713374a7cb6e131a30a136a73 /embed/ephy-permission-manager.h | |
parent | 0730f856ac19d184decfcef122e18981d87d9f7e (diff) | |
download | gsoc2013-epiphany-3b221e541fef2c6c4f1948eda8be95f4d7bc941e.tar gsoc2013-epiphany-3b221e541fef2c6c4f1948eda8be95f4d7bc941e.tar.gz gsoc2013-epiphany-3b221e541fef2c6c4f1948eda8be95f4d7bc941e.tar.bz2 gsoc2013-epiphany-3b221e541fef2c6c4f1948eda8be95f4d7bc941e.tar.lz gsoc2013-epiphany-3b221e541fef2c6c4f1948eda8be95f4d7bc941e.tar.xz gsoc2013-epiphany-3b221e541fef2c6c4f1948eda8be95f4d7bc941e.tar.zst gsoc2013-epiphany-3b221e541fef2c6c4f1948eda8be95f4d7bc941e.zip |
Change the EphyPermissionManager API so that it is more obvious what it
2006-01-22 Crispin Flowerday <gnome@flowerday.cx>
* embed/ephy-permission-manager.c:
(ephy_permission_manager_add_permission),
(ephy_permission_manager_remove_permission),
(ephy_permission_manager_clear_permissions),
(ephy_permission_manager_test_permission),
(ephy_permission_manager_list_permissions):
* embed/ephy-permission-manager.h:
* src/ephy-tab.c: (ephy_tab_get_popups_allowed),
(ephy_tab_set_popups_allowed):
* src/epiphany.defs:
* src/epiphany.override:
Change the EphyPermissionManager API so that it is
more obvious what it does when used from python.
Diffstat (limited to 'embed/ephy-permission-manager.h')
-rw-r--r-- | embed/ephy-permission-manager.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/embed/ephy-permission-manager.h b/embed/ephy-permission-manager.h index b5c3a0354..bba4c37bd 100644 --- a/embed/ephy-permission-manager.h +++ b/embed/ephy-permission-manager.h @@ -106,23 +106,23 @@ void ephy_permission_info_free (EphyPermissionInfo *info); GType ephy_permission_manager_get_type (void); -void ephy_permission_manager_add (EphyPermissionManager *manager, - const char *host, - const char *type, - EphyPermission permission); +void ephy_permission_manager_add_permission (EphyPermissionManager *manager, + const char *host, + const char *type, + EphyPermission permission); -void ephy_permission_manager_remove (EphyPermissionManager *manager, - const char *host, - const char *type); +void ephy_permission_manager_remove_permission (EphyPermissionManager *manager, + const char *host, + const char *type); -void ephy_permission_manager_clear (EphyPermissionManager *manager); +void ephy_permission_manager_clear_permissions (EphyPermissionManager *manager); -EphyPermission ephy_permission_manager_test (EphyPermissionManager *manager, - const char *host, - const char *type); +EphyPermission ephy_permission_manager_test_permission (EphyPermissionManager *manager, + const char *host, + const char *type); -GList * ephy_permission_manager_list (EphyPermissionManager *manager, - const char *type); +GList * ephy_permission_manager_list_permissions (EphyPermissionManager *manager, + const char *type); G_END_DECLS |