summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/appcache_host.h
diff options
context:
space:
mode:
authorkkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-05 18:22:36 +0000
committerkkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-05 18:22:36 +0000
commit4164a7311d49382ae3ec1117de53de2fc3517bb7 (patch)
tree255c05aaa0c609dbbec86e57fee6792eb019eae5 /webkit/appcache/appcache_host.h
parent145f6e49cd5ce6cb6718188eb61380a0b3daac1f (diff)
downloadchromium_src-4164a7311d49382ae3ec1117de53de2fc3517bb7.zip
chromium_src-4164a7311d49382ae3ec1117de53de2fc3517bb7.tar.gz
chromium_src-4164a7311d49382ae3ec1117de53de2fc3517bb7.tar.bz2
Sending renderer notification when update job finishes (Used to notify cache complete).
OnCacheSelected() event caches appcache info in appcache host. This info is returned for appcache inspection by devtools. BUG = None TEST = Manual Review URL: http://codereview.chromium.org/3074015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55101 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache_host.h')
-rw-r--r--webkit/appcache/appcache_host.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/appcache/appcache_host.h b/webkit/appcache/appcache_host.h
index d78ffe7..a23be18 100644
--- a/webkit/appcache/appcache_host.h
+++ b/webkit/appcache/appcache_host.h
@@ -202,6 +202,9 @@ class AppCacheHost : public AppCacheStorage::Delegate,
bool main_resource_blocked_;
GURL blocked_manifest_url_;
+ // Tells if info about associated cache is pending. Info is pending
+ // when update job has not returned success yet.
+ bool associated_cache_info_pending_;
// List of objects observing us.
ObserverList<Observer> observers_;