summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/view_appcache_internals_job.cc
diff options
context:
space:
mode:
authormichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-13 02:00:53 +0000
committermichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-13 02:00:53 +0000
commite2cadec89844f232f4b8887e85cfb72182d49107 (patch)
treeb387565d11df7aabfbd4c8b30b780b620bf0f9cf /webkit/appcache/view_appcache_internals_job.cc
parent91f10325d9835d204cbe88693f79221b3b402931 (diff)
downloadchromium_src-e2cadec89844f232f4b8887e85cfb72182d49107.zip
chromium_src-e2cadec89844f232f4b8887e85cfb72182d49107.tar.gz
chromium_src-e2cadec89844f232f4b8887e85cfb72182d49107.tar.bz2
AppCache INTERCEPT namespace.
- Add support for a custom CHROMIUM CACHE MANIFEST signature. Other browsers should ignore files with this signature. - Parse intercept namespace entries out of the new CHROMIUM-INTERCEPT manifest section. Other browsers should ignore this entire section. - Store and retrieve the new kind of namespace records in the database layer. - Upgrade existing databases to the new schema. - Look for matches in the new namespaces when handling main and sub resource requests. - Add unit tests. BUG=101565 Review URL: http://codereview.chromium.org/8396013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114151 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/view_appcache_internals_job.cc')
-rw-r--r--webkit/appcache/view_appcache_internals_job.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/webkit/appcache/view_appcache_internals_job.cc b/webkit/appcache/view_appcache_internals_job.cc
index 025139b..3d51b4c 100644
--- a/webkit/appcache/view_appcache_internals_job.cc
+++ b/webkit/appcache/view_appcache_internals_job.cc
@@ -176,6 +176,8 @@ std::string FormFlagsString(const AppCacheResourceInfo& info) {
str.append("Manifest, ");
if (info.is_master)
str.append("Master, ");
+ if (info.is_intercept)
+ str.append("Intercept, ");
if (info.is_fallback)
str.append("Fallback, ");
if (info.is_explicit)