summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/appcache_entry.h
diff options
context:
space:
mode:
authormichaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-06 03:26:41 +0000
committermichaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-06 03:26:41 +0000
commitfd4882e6faab19e1de6d791acebfa3b34faf5701 (patch)
tree2fa95bddd8b6189d0dd7b850d24da0b7ab382e28 /webkit/appcache/appcache_entry.h
parent12e8fecd3923d3ace7fe3f505ba3fa490b5417c1 (diff)
downloadchromium_src-fd4882e6faab19e1de6d791acebfa3b34faf5701.zip
chromium_src-fd4882e6faab19e1de6d791acebfa3b34faf5701.tar.gz
chromium_src-fd4882e6faab19e1de6d791acebfa3b34faf5701.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/523046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35609 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache_entry.h')
-rw-r--r--webkit/appcache/appcache_entry.h14
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