I'm using Xilium.CefGlue browser for WPF. How can I clear browser history? I didn't found any managed API for that. I found only method definition in cef_browser_capi.h.
Asked
Active
Viewed 1,266 times
1 Answers
1
Currently only one way exist - delete cache path directory when it is no more used by application.
PS: For general CEF questions better ask questions at CEF forum http://www.magpcss.org/ceforum .

Dmitry Azaraev
- 1,093
- 6
- 9
-
Will it delet whole cache or only the history? – TcKs Sep 26 '13 at 10:09
-
CEF for now not track visited url and history. So you can delete only cached content (may be also appcache, etc). If you need clear only one thing - check how them are stored - usually differents subsystems uses different files. – Dmitry Azaraev Sep 26 '13 at 17:32