Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Unified Diff: content/browser/in_process_webkit/indexed_db_context.h

Issue 7470008: Improve IndexedDB's quota support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove NOTREACHED Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/in_process_webkit/indexed_db_context.h
diff --git a/content/browser/in_process_webkit/indexed_db_context.h b/content/browser/in_process_webkit/indexed_db_context.h
index 408cccc737a15a2a863092a8093bbbcdeeb3e9a9..5ce0a6ad2ffe650017a6a881abdbf0931938f2e0 100644
--- a/content/browser/in_process_webkit/indexed_db_context.h
+++ b/content/browser/in_process_webkit/indexed_db_context.h
@@ -6,6 +6,8 @@
#define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CONTEXT_H_
#pragma once
+#include <map>
+
#include "base/basictypes.h"
#include "base/file_path.h"
#include "base/memory/ref_counted.h"
@@ -53,16 +55,22 @@ class IndexedDBContext : public base::RefCountedThreadSafe<IndexedDBContext> {
clear_local_state_on_exit_ = clear_local_state;
}
- // Deletes a single indexed db file.
- void DeleteIndexedDBFile(const FilePath& file_path);
-
// Deletes all indexed db files for the given origin.
- void DeleteIndexedDBForOrigin(const string16& origin_id);
+ void DeleteIndexedDBForOrigin(const GURL& origin_url);
// Does a particular origin get unlimited storage?
bool IsUnlimitedStorageGranted(const GURL& origin) const;
+ // Methods used in response to QuotaManager requests.
void GetAllOriginIdentifiers(std::vector<string16>* origin_ids);
+ int64 GetOriginDiskUsage(const GURL& origin_url);
+
+ // Methods called by IndexedDBDispatcherHost for quota support.
+ void ConnectionOpened(const GURL& origin_url);
+ void ConnectionClosed(const GURL& origin_url);
+ void TransactionComplete(const GURL& origin_url);
+ bool WouldBeOverQuota(const GURL& origin_url, int64 additional_bytes);
+ bool IsOverQuota(const GURL& origin_url);
quota::QuotaManagerProxy* quota_manager_proxy();
@@ -72,6 +80,16 @@ class IndexedDBContext : public base::RefCountedThreadSafe<IndexedDBContext> {
#endif
private:
+ typedef std::map<GURL, int64> OriginToSizeMap;
+ class IndexedDBGetUsageAndQuotaCallback;
+
+ int64 ReadUsageFromDisk(const GURL& origin_url) const;
+ void EnsureDiskUsageCacheInitialized(const GURL& origin_url);
+ void QueryDiskAndUpdateQuotaUsage(const GURL& origin_url);
+ void GotUpdatedQuota(const GURL& origin_url, int64 usage, int64 quota);
+ void QueryAvailableQuota(const GURL& origin_url);
+ int64 ResetDiskUsageCache(const GURL& origin_url);
+
scoped_ptr<WebKit::WebIDBFactory> idb_factory_;
// Path where the indexed db data is stored
@@ -84,6 +102,10 @@ class IndexedDBContext : public base::RefCountedThreadSafe<IndexedDBContext> {
scoped_refptr<quota::QuotaManagerProxy> quota_manager_proxy_;
+ OriginToSizeMap origin_size_map_;
+ OriginToSizeMap space_available_map_;
+ std::map<GURL, unsigned int> connection_count_;
+
DISALLOW_COPY_AND_ASSIGN(IndexedDBContext);
};
« no previous file with comments | « content/browser/in_process_webkit/indexed_db_callbacks.cc ('k') | content/browser/in_process_webkit/indexed_db_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698