/usr/include/epiphany/3.4/epiphany/ephy-permission-manager.h is in epiphany-browser-dev 3.4.0.1-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | /*
* Copyright © 2003 Marco Pesenti Gritti
* Copyright © 2003 Christian Persch
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#if !defined (__EPHY_EPIPHANY_H_INSIDE__) && !defined (EPIPHANY_COMPILATION)
#error "Only <epiphany/epiphany.h> can be included directly."
#endif
#ifndef EPHY_PERMISSION_MANAGER_H
#define EPHY_PERMISSION_MANAGER_H
#include <glib-object.h>
#include <glib.h>
G_BEGIN_DECLS
#define EPHY_TYPE_PERMISSION_MANAGER (ephy_permission_manager_get_type ())
#define EPHY_PERMISSION_MANAGER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_PERMISSION_MANAGER, EphyPermissionManager))
#define EPHY_PERMISSION_MANAGER_IFACE(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_PERMISSION_MANAGER, EphyPermissionManagerIface))
#define EPHY_IS_PERMISSION_MANAGER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_PERMISSION_MANAGER))
#define EPHY_IS_PERMISSION_MANAGER_IFACE(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_PERMISSION_MANAGER))
#define EPHY_PERMISSION_MANAGER_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EPHY_TYPE_PERMISSION_MANAGER, EphyPermissionManagerIface))
#define EPHY_TYPE_PERMISSION_INFO (ephy_permission_info_get_type ())
#define EPHY_PERMISSION_TYPE_COOKIE "cookie"
#define EPHY_PERMISSION_TYPE_IMAGE "image"
#define EPHY_PERMISSION_TYPE_POPUP "popup"
typedef enum
{
EPHY_PERMISSION_ALLOWED,
EPHY_PERMISSION_DENIED,
EPHY_PERMISSION_DEFAULT
} EphyPermission;
typedef struct _EphyPermissionInfo EphyPermissionInfo;
typedef struct _EphyPermissionManager EphyPermissionManager;
typedef struct _EphyPermissionManagerIface EphyPermissionManagerIface;
struct _EphyPermissionInfo
{
char *host;
GQuark qtype;
EphyPermission permission;
};
struct _EphyPermissionManagerIface
{
GTypeInterface base_iface;
/* Signals */
void (* added) (EphyPermissionManager *manager,
EphyPermissionInfo *info);
void (* changed) (EphyPermissionManager *manager,
EphyPermissionInfo *info);
void (* deleted) (EphyPermissionManager *manager,
EphyPermissionInfo *info);
void (* cleared) (EphyPermissionManager *manager);
/* Methods */
void (* add) (EphyPermissionManager *manager,
const char *host,
const char *type,
EphyPermission permission);
void (* remove) (EphyPermissionManager *manager,
const char *host,
const char *type);
void (* clear) (EphyPermissionManager *manager);
EphyPermission (* test) (EphyPermissionManager *manager,
const char *host,
const char *type);
GList * (* list) (EphyPermissionManager *manager,
const char *type);
};
/* EphyPermissionInfo */
GType ephy_permission_get_type (void);
GType ephy_permission_info_get_type (void);
EphyPermissionInfo *ephy_permission_info_new (const char *host,
const char *type,
EphyPermission permission);
EphyPermissionInfo *ephy_permission_info_copy (const EphyPermissionInfo *info);
void ephy_permission_info_free (EphyPermissionInfo *info);
/* EphyPermissionManager */
GType ephy_permission_manager_get_type (void);
void ephy_permission_manager_add_permission (EphyPermissionManager *manager,
const char *host,
const char *type,
EphyPermission permission);
void ephy_permission_manager_remove_permission (EphyPermissionManager *manager,
const char *host,
const char *type);
void ephy_permission_manager_clear_permissions (EphyPermissionManager *manager);
EphyPermission ephy_permission_manager_test_permission (EphyPermissionManager *manager,
const char *host,
const char *type);
GList * ephy_permission_manager_list_permissions (EphyPermissionManager *manager,
const char *type);
G_END_DECLS
#endif
|