Searched defs:AppCache (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/ui/file_manager/file_manager/common/js/
H A Dutil.js594 * AppCache is a persistent timestamped key-value storage backed by
603 util.AppCache = function() {};
608 util.AppCache.KEY = 'AppCache';
613 util.AppCache.CAPACITY = 100;
618 util.AppCache.LIFETIME = 30 * 24 * 60 * 60 * 1000; // 30 days.
624 util.AppCache.getValue = function(key, callback) {
625 util.AppCache.read_(function(map) {
638 util.AppCache.update = function(key, value, opt_lifetime) {
639 util.AppCache
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache.cc19 AppCache::AppCache(AppCacheStorage* storage, int64 cache_id) function in class:content::AppCache
29 AppCache::~AppCache() {
41 void AppCache::UnassociateHost(AppCacheHost* host) {
45 void AppCache::AddEntry(const GURL& url, const AppCacheEntry& entry) {
51 bool AppCache::AddOrModifyEntry(const GURL& url, const AppCacheEntry& entry) {
63 void AppCache::RemoveEntry(const GURL& url) {
70 AppCacheEntry* AppCache::GetEntry(const GURL& url) {
75 const AppCacheEntry* AppCache
[all...]
H A Dappcache.h39 class CONTENT_EXPORT AppCache class in namespace:content
40 : public base::RefCounted<AppCache> {
45 AppCache(AppCacheStorage* storage, int64 cache_id);
74 // The AppCache owns the collection of executable handlers that have
93 bool IsNewerThan(AppCache* cache) const {
152 friend class base::RefCounted<AppCache>;
154 ~AppCache();
205 DISALLOW_COPY_AND_ASSIGN(AppCache);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DConsoleModel.js393 AppCache: "appcache",

Completed in 131 milliseconds