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

Unified Diff: webkit/appcache/appcache.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.h
===================================================================
--- webkit/appcache/appcache.h (revision 53710)
+++ webkit/appcache/appcache.h (working copy)
@@ -72,6 +72,9 @@
}
base::Time update_time() const { return update_time_; }
+
+ int64 cache_size() const { return cache_size_; }
+
void set_update_time(base::Time ticks) { update_time_ = ticks; }
// Initializes the cache with information in the manifest.
@@ -135,6 +138,8 @@
// when this cache was last updated
base::Time update_time_;
+ int64 cache_size_;
+
// to notify service when cache is deleted
AppCacheService* service_;

Powered by Google App Engine
This is Rietveld 408576698