diff options
Diffstat (limited to 'WebCore/page/PageGroup.h')
-rw-r--r-- | WebCore/page/PageGroup.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/WebCore/page/PageGroup.h b/WebCore/page/PageGroup.h index cc47fba..0c4b26f 100644 --- a/WebCore/page/PageGroup.h +++ b/WebCore/page/PageGroup.h @@ -50,6 +50,10 @@ namespace WebCore { static PageGroup* pageGroup(const String& groupName); static void closeLocalStorage(); +#if ENABLE(DOM_STORAGE) && defined(ANDROID) + static void clearDomStorage(); +#endif + const HashSet<Page*>& pages() const { return m_pages; } void addPage(Page*); @@ -101,6 +105,10 @@ namespace WebCore { private: void addVisitedLink(LinkHash stringHash); void resetUserStyleCacheInAllFrames(); + +#if ENABLE(DOM_STORAGE) && defined(ANDROID) + void removeLocalStorage(); +#endif String m_name; |