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

Unified Diff: webkit/appcache/appcache_group.h

Issue 3009005: Chrome side of changes required to populate appcache resource list.... (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
Index: webkit/appcache/appcache_group.h
===================================================================
--- webkit/appcache/appcache_group.h (revision 53710)
+++ webkit/appcache/appcache_group.h (working copy)
@@ -54,7 +54,8 @@
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 @@
const int64 group_id_;
const GURL manifest_url_;
+ base::Time creation_time_;
UpdateStatus update_status_;
bool is_obsolete_;
bool is_being_deleted_;

Powered by Google App Engine
This is Rietveld 408576698