summaryrefslogtreecommitdiffstats
path: root/WebCore/page/GroupSettings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/page/GroupSettings.cpp')
-rw-r--r--WebCore/page/GroupSettings.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/WebCore/page/GroupSettings.cpp b/WebCore/page/GroupSettings.cpp
index 58ab74d..0762861 100644
--- a/WebCore/page/GroupSettings.cpp
+++ b/WebCore/page/GroupSettings.cpp
@@ -30,6 +30,7 @@ namespace WebCore {
GroupSettings::GroupSettings()
: m_localStorageQuotaBytes(5 * 1024 * 1024) // Suggested by the HTML5 spec.
+ , m_indexedDBQuotaBytes(5 * 1024 * 1024)
{
}
@@ -43,4 +44,10 @@ void GroupSettings::setIndexedDBDatabasePath(const String& path)
m_indexedDBDatabasePath = path;
}
+void GroupSettings::setIndexedDBQuotaBytes(int64_t quota)
+{
+ m_indexedDBQuotaBytes = quota;
+}
+
+
} // namespace WebCore