Handle Flash cookies on Windows and OS X
This commit is contained in:
parent
569b8e4779
commit
9275a6cd24
1 changed files with 9 additions and 0 deletions
|
@ -1747,6 +1747,15 @@ midori_clear_web_cookies_cb (void)
|
||||||
cache = g_build_filename (g_get_home_dir (), ".macromedia", "Flash_Player", NULL);
|
cache = g_build_filename (g_get_home_dir (), ".macromedia", "Flash_Player", NULL);
|
||||||
sokoke_remove_path (cache, TRUE);
|
sokoke_remove_path (cache, TRUE);
|
||||||
g_free (cache);
|
g_free (cache);
|
||||||
|
#elif defined(GDK_WINDOWING_WIN32)
|
||||||
|
cache = g_build_filename (g_get_user_data_dir (), "Macromedia", "Flash Player", NULL);
|
||||||
|
sokoke_remove_path (cache, TRUE);
|
||||||
|
g_free (cache);
|
||||||
|
#elif defined(GDK_WINDOWING_QUARTZ)
|
||||||
|
cache = g_build_filename (g_get_home_dir (), "Library", "Preferences",
|
||||||
|
"Macromedia", "Flash Player", NULL);
|
||||||
|
sokoke_remove_path (cache, TRUE);
|
||||||
|
g_free (cache);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* HTML5 databases */
|
/* HTML5 databases */
|
||||||
|
|
Loading…
Reference in a new issue