diff options
author | kkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-28 03:14:37 +0000 |
---|---|---|
committer | kkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-28 03:14:37 +0000 |
commit | ec5c192817606b55ad99edb256997b70eea41b85 (patch) | |
tree | 16e863d9b1fa02f029c050b028177b7c984da6eb /webkit/appcache/appcache_group.h | |
parent | 16d35b25ec19b82c13dc7cd24f744951cc12fad0 (diff) | |
download | chromium_src-ec5c192817606b55ad99edb256997b70eea41b85.zip chromium_src-ec5c192817606b55ad99edb256997b70eea41b85.tar.gz chromium_src-ec5c192817606b55ad99edb256997b70eea41b85.tar.bz2 |
Chrome side of changes required to populate appcache resource list.
BUG = 2821005
TEST = Manually navigate.
Review URL: http://codereview.chromium.org/3009005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53902 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache_group.h')
-rw-r--r-- | webkit/appcache/appcache_group.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/appcache/appcache_group.h b/webkit/appcache/appcache_group.h index a811337..efcec48 100644 --- a/webkit/appcache/appcache_group.h +++ b/webkit/appcache/appcache_group.h @@ -54,7 +54,8 @@ class AppCacheGroup : public base::RefCounted<AppCacheGroup> { int64 group_id() const { return group_id_; } const GURL& manifest_url() const { return manifest_url_; } - + const base::Time& creation_time() const { return creation_time_; } + void set_creation_time(const base::Time& time) { creation_time_ = time; } bool is_obsolete() const { return is_obsolete_; } void set_obsolete(bool value) { is_obsolete_ = value; } @@ -122,6 +123,7 @@ class AppCacheGroup : public base::RefCounted<AppCacheGroup> { const int64 group_id_; const GURL manifest_url_; + base::Time creation_time_; UpdateStatus update_status_; bool is_obsolete_; bool is_being_deleted_; |