diff options
author | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-06 22:25:33 +0000 |
---|---|---|
committer | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-06 22:25:33 +0000 |
commit | 0dfeec38d00d53b6751a937e43394d6036987698 (patch) | |
tree | b8641d3bd07cbe185deb9f1dba29acb551bb92a2 /webkit/appcache/appcache_entry.h | |
parent | f1002ee286ad56e2b80736661e89989b650aad6e (diff) | |
download | chromium_src-0dfeec38d00d53b6751a937e43394d6036987698.zip chromium_src-0dfeec38d00d53b6751a937e43394d6036987698.tar.gz chromium_src-0dfeec38d00d53b6751a937e43394d6036987698.tar.bz2 |
AppCache quota tracking groundwork, store response sizes in the SQL database.
TEST=updated existing unittests
BUG=none
Review URL: http://codereview.chromium.org/525060
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35654 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache_entry.h')
-rw-r--r-- | webkit/appcache/appcache_entry.h | 14 |
1 files changed, 11 insertions, 3 deletions
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 |