summaryrefslogtreecommitdiffstats
path: root/WebCore/page/PageGroup.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/page/PageGroup.h')
-rw-r--r--WebCore/page/PageGroup.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/WebCore/page/PageGroup.h b/WebCore/page/PageGroup.h
index 446f0c7..cd2d9e3 100644
--- a/WebCore/page/PageGroup.h
+++ b/WebCore/page/PageGroup.h
@@ -48,6 +48,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*);
@@ -90,6 +94,10 @@ namespace WebCore {
private:
void addVisitedLink(LinkHash stringHash);
+#if ENABLE(DOM_STORAGE) && defined(ANDROID)
+ void removeLocalStorage();
+#endif
+
String m_name;
HashSet<Page*> m_pages;