From fd4882e6faab19e1de6d791acebfa3b34faf5701 Mon Sep 17 00:00:00 2001 From: "michaeln@chromium.org" Date: Wed, 6 Jan 2010 03:26:41 +0000 Subject: AppCache quota tracking groundwork, store response sizes in the SQL database. TEST=updated existing unittests BUG=none Review URL: http://codereview.chromium.org/523046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35609 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/appcache/appcache_entry.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'webkit/appcache/appcache_entry.h') diff --git a/webkit/appcache/appcache_entry.h b/webkit/appcache/appcache_entry.h index ac67ac3..71239e2 100644 --- a/webkit/appcache/appcache_entry.h +++ b/webkit/appcache/appcache_entry.h @@ -24,13 +24,17 @@ class AppCacheEntry { FALLBACK = 1 << 4, }; - AppCacheEntry() : types_(0), response_id_(kNoResponseId) {} + AppCacheEntry() + : types_(0), response_id_(kNoResponseId), response_size_(0) {} explicit AppCacheEntry(int type) - : types_(type), response_id_(kNoResponseId) {} + : types_(type), response_id_(kNoResponseId), response_size_(0) {} AppCacheEntry(int type, int64 response_id) - : types_(type), response_id_(response_id) {} + : types_(type), response_id_(response_id), response_size_(0) {} + + AppCacheEntry(int type, int64 response_id, int64 response_size) + : types_(type), response_id_(response_id), response_size_(response_size) {} int types() const { return types_; } void add_types(int added_types) { types_ |= added_types; } @@ -44,9 +48,13 @@ class AppCacheEntry { void set_response_id(int64 id) { response_id_ = id; } bool has_response_id() const { return response_id_ != kNoResponseId; } + int64 response_size() const { return response_size_; } + void set_response_size(int64 size) { response_size_ = size; } + private: int types_; int64 response_id_; + int64 response_size_; }; } // namespace appcache -- cgit v1.1