Index: webkit/browser/appcache/appcache_entry.h |
diff --git a/webkit/browser/appcache/appcache_entry.h b/webkit/browser/appcache/appcache_entry.h |
index 01b5f6c04f76aabf3e3f2b08f9fa26c8edaa5b88..81d14e3cb83fec89c16c46c1266b0acc71a4242e 100644 |
--- a/webkit/browser/appcache/appcache_entry.h |
+++ b/webkit/browser/appcache/appcache_entry.h |
@@ -41,6 +41,7 @@ class AppCacheEntry { |
int types() const { return types_; } |
void add_types(int added_types) { types_ |= added_types; } |
+ void clear_types(int cleared_types) { types_ &= !cleared_types; } |
bool IsMaster() const { return (types_ & MASTER) != 0; } |
bool IsManifest() const { return (types_ & MANIFEST) != 0; } |
bool IsExplicit() const { return (types_ & EXPLICIT) != 0; } |