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

Unified Diff: webkit/quota/quota_manager.cc

Issue 7029009: Add an interface QuotaEvictionHandler. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 7 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
« webkit/quota/quota_manager.h ('K') | « webkit/quota/quota_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/quota/quota_manager.cc
diff --git a/webkit/quota/quota_manager.cc b/webkit/quota/quota_manager.cc
index 7da4480e9ddaef01721f879ecac28e5023eaec40..7e5be19221c00aed36e3d44342429bf1e33fab3b 100644
--- a/webkit/quota/quota_manager.cc
+++ b/webkit/quota/quota_manager.cc
@@ -680,6 +680,18 @@ void QuotaManager::GetLRUOrigin(
}
}
+void QuotaManager::GetUsageAndQuotaForEviction(
+ DeleteOriginDataCallback* callback) {
+ // TODO(dmikurube): Implement it.
+}
+
+void QuotaManager::DeleteOriginData(
+ const GURL& origin,
+ StorageType type,
+ DeleteOriginDataCallback* callback) {
+ // TODO(dmikurube): Implement it.
+}
+
UsageTracker* QuotaManager::GetUsageTracker(StorageType type) const {
switch (type) {
case kStorageTypeTemporary:
« webkit/quota/quota_manager.h ('K') | « webkit/quota/quota_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698