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

Unified Diff: webkit/appcache/appcache_storage.cc

Issue 3083014: AppCache: Provide a way to override the default quota for an origin. The inte... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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
« no previous file with comments | « webkit/appcache/appcache_storage.h ('k') | webkit/appcache/appcache_storage_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_storage.cc
===================================================================
--- webkit/appcache/appcache_storage.cc (revision 54804)
+++ webkit/appcache/appcache_storage.cc (working copy)
@@ -72,5 +72,24 @@
info_load->StartIfNeeded();
}
+void AppCacheStorage::SetOriginQuotaInMemory(const GURL& origin, int64 quota) {
+ DCHECK(quota >= 0);
+ DCHECK(origin == origin.GetOrigin());
+ in_memory_quotas_[origin] = quota;
+}
+
+void AppCacheStorage::ResetOriginQuotaInMemory(const GURL& origin) {
+ DCHECK(origin == origin.GetOrigin());
+ in_memory_quotas_.erase(origin);
+}
+
+int64 AppCacheStorage::GetOriginQuotaInMemory(const GURL& origin) {
+ DCHECK(origin == origin.GetOrigin());
+ QuotaMap::const_iterator found = in_memory_quotas_.find(origin);
+ if (found == in_memory_quotas_.end())
+ return -1;
+ return found->second;
+}
+
} // namespace appcache
« no previous file with comments | « webkit/appcache/appcache_storage.h ('k') | webkit/appcache/appcache_storage_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698