summaryrefslogtreecommitdiffstats
path: root/webkit/quota
diff options
context:
space:
mode:
authormichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-15 00:24:13 +0000
committermichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-15 00:24:13 +0000
commiteea70adb356b50280cb5ac8f259ddf9648dc5c3e (patch)
tree6a17d2a18bc02ed675ae6e31d47238934e02f796 /webkit/quota
parent4f9fa249f51298da15688e810626ccde204f62f4 (diff)
downloadchromium_src-eea70adb356b50280cb5ac8f259ddf9648dc5c3e.zip
chromium_src-eea70adb356b50280cb5ac8f259ddf9648dc5c3e.tar.gz
chromium_src-eea70adb356b50280cb5ac8f259ddf9648dc5c3e.tar.bz2
More Quota + WebSQLDatabase integration.
* Notify the QuotaManager of accesses and modifications to the amount of storage utlized. * Still, the hard-coded 5MB limit is in place. BUG=61676 TEST=database_tracker_unittest.cc, database_connections_unittest.cc Review URL: http://codereview.chromium.org/7001014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85400 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/quota')
-rw-r--r--webkit/quota/quota_manager.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/webkit/quota/quota_manager.h b/webkit/quota/quota_manager.h
index cac13f4..c80d568 100644
--- a/webkit/quota/quota_manager.h
+++ b/webkit/quota/quota_manager.h
@@ -200,8 +200,9 @@ class QuotaManagerProxy
protected:
friend class QuotaManager;
friend class base::RefCountedThreadSafe<QuotaManagerProxy>;
+
QuotaManagerProxy(QuotaManager* manager, base::MessageLoopProxy* io_thread);
- ~QuotaManagerProxy();
+ virtual ~QuotaManagerProxy();
QuotaManager* manager_; // only accessed on the io thread
scoped_refptr<base::MessageLoopProxy> io_thread_;