diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-02-14 07:01:21 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-02-14 07:01:21 +0800 |
commit | 44d332d8c7b555b37292ba70ca9be327c1aacfe8 (patch) | |
tree | e36487e9effcce688fcf5aa9a1ec20fbbcf3012f /lib/ephy-file-helpers.h | |
parent | 6a26e601c499f07ef80c69e72dd902490a019a59 (diff) | |
download | gsoc2013-epiphany-44d332d8c7b555b37292ba70ca9be327c1aacfe8.tar gsoc2013-epiphany-44d332d8c7b555b37292ba70ca9be327c1aacfe8.tar.gz gsoc2013-epiphany-44d332d8c7b555b37292ba70ca9be327c1aacfe8.tar.bz2 gsoc2013-epiphany-44d332d8c7b555b37292ba70ca9be327c1aacfe8.tar.lz gsoc2013-epiphany-44d332d8c7b555b37292ba70ca9be327c1aacfe8.tar.xz gsoc2013-epiphany-44d332d8c7b555b37292ba70ca9be327c1aacfe8.tar.zst gsoc2013-epiphany-44d332d8c7b555b37292ba70ca9be327c1aacfe8.zip |
Move --private-instance out of debug #ifdef.
2006-02-14 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-file-helpers.c: (ephy_file_helpers_init),
(ephy_file_helpers_shutdown), (ephy_file_delete_on_exit),
(ephy_file_monitor_cancel), (ephy_file_delete_directory):
* lib/ephy-file-helpers.h:
* src/ephy-main.c: (main):
Move --private-instance out of debug #ifdef.
Diffstat (limited to 'lib/ephy-file-helpers.h')
-rw-r--r-- | lib/ephy-file-helpers.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/ephy-file-helpers.h b/lib/ephy-file-helpers.h index 8f9440af9..ef96d7b3e 100644 --- a/lib/ephy-file-helpers.h +++ b/lib/ephy-file-helpers.h @@ -45,7 +45,7 @@ typedef gboolean (* EphyFileMonitorDelayFunc) (EphyFileMonitor*, gpointer); gboolean ephy_file_helpers_init (const char *profile_dir, gboolean private_profile, - gboolean delete_profile_on_exit, + gboolean keep_temp_dir, GError **error); const char *ephy_file (const char *filename); @@ -99,6 +99,8 @@ EphyFileMonitor *ephy_file_monitor_add (const char *uri, void ephy_file_monitor_cancel (EphyFileMonitor *monitor); +void ephy_file_delete_directory (const char *path); + G_END_DECLS #endif /* EPHY_FILE_HELPERS_H */ |