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

Unified Diff: webkit/appcache/appcache_storage_impl.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.cc ('k') | webkit/appcache/appcache_storage_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_storage_impl.cc
===================================================================
--- webkit/appcache/appcache_storage_impl.cc (revision 54804)
+++ webkit/appcache/appcache_storage_impl.cc (working copy)
@@ -402,13 +402,16 @@
scoped_refptr<AppCache> cache_;
bool success_;
bool would_exceed_quota_;
+ int64 quota_override_;
std::vector<int64> newly_deletable_response_ids_;
};
AppCacheStorageImpl::StoreGroupAndCacheTask::StoreGroupAndCacheTask(
AppCacheStorageImpl* storage, AppCacheGroup* group, AppCache* newest_cache)
: StoreOrLoadTask(storage), group_(group), cache_(newest_cache),
- success_(false), would_exceed_quota_(false) {
+ success_(false), would_exceed_quota_(false),
+ quota_override_(
+ storage->GetOriginQuotaInMemory(group->manifest_url().GetOrigin())) {
group_record_.group_id = group->group_id();
group_record_.manifest_url = group->manifest_url();
group_record_.origin = group_record_.manifest_url.GetOrigin();
@@ -485,8 +488,11 @@
if (!success_)
return;
- if (database_->GetOriginUsage(group_record_.origin) >
- database_->GetOriginQuota(group_record_.origin)) {
+ int64 quota = (quota_override_ >= 0) ?
+ quota_override_ :
+ database_->GetOriginQuota(group_record_.origin);
+
+ if (database_->GetOriginUsage(group_record_.origin) > quota) {
would_exceed_quota_ = true;
success_ = false;
return;
« no previous file with comments | « webkit/appcache/appcache_storage.cc ('k') | webkit/appcache/appcache_storage_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698