From d00da8ed9b5ae66e7eb0374f571d3ed12b8661f8 Mon Sep 17 00:00:00 2001 From: Jihye Kang Date: Wed, 10 Apr 2013 22:51:51 +0900 Subject: [PATCH] [WK2] Allow exceed quota for WebDatabase by default [Title] Allow exceed quota for WebDatabase by default [Issue#] N/A [Problem] [Cause] [Solution] Change-Id: I71bcfeaf4c1494ba54beacbcce725d9fbb2c0e75 --- Source/WebKit2/UIProcess/WebPageProxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/WebKit2/UIProcess/WebPageProxy.cpp b/Source/WebKit2/UIProcess/WebPageProxy.cpp index a6ff11a..48441c9 100755 --- a/Source/WebKit2/UIProcess/WebPageProxy.cpp +++ b/Source/WebKit2/UIProcess/WebPageProxy.cpp @@ -4251,7 +4251,7 @@ void WebPageProxy::exceededDatabaseQuota(uint64_t frameID, const String& originI #endif if (!m_uiClient.exceededDatabaseQuota(this, frame, origin.get(), displayName, expectedUsage)) - replyExceededDatabaseQuota(false); + replyExceededDatabaseQuota(true); } #else void WebPageProxy::exceededDatabaseQuota(uint64_t frameID, const String& originIdentifier, const String& databaseName, const String& displayName, uint64_t currentQuota, uint64_t currentOriginUsage, uint64_t currentDatabaseUsage, uint64_t expectedUsage, uint64_t& newQuota) -- 2.7.4