Home
last modified time | relevance | path

Searched refs:old_caches_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/content/browser/appcache/
Dappcache_group.cc55 DCHECK(old_caches_.empty()); in ~AppCacheGroup()
95 old_caches_.push_back(newest_complete_cache_); in AddCache()
99 for (Caches::iterator it = old_caches_.begin(); in AddCache()
100 it != old_caches_.end(); ++it) { in AddCache()
108 old_caches_.push_back(complete_cache); in AddCache()
122 std::find(old_caches_.begin(), old_caches_.end(), cache); in RemoveCache()
123 if (it != old_caches_.end()) { in RemoveCache()
125 old_caches_.erase(it); in RemoveCache()
129 if (!is_obsolete() && old_caches_.empty() && in RemoveCache()
139 if (is_being_deleted() || (!is_obsolete() && old_caches_.empty())) { in AddNewlyDeletableResponseIds()
Dappcache_group.h120 const Caches& old_caches() const { return old_caches_; } in old_caches()
139 Caches old_caches_; variable