Index: webkit/appcache/appcache_entry.h |
=================================================================== |
--- webkit/appcache/appcache_entry.h (revision 194203) |
+++ webkit/appcache/appcache_entry.h (working copy) |
@@ -24,6 +24,7 @@ |
FOREIGN = 1 << 3, |
FALLBACK = 1 << 4, |
INTERCEPT = 1 << 5, |
+ EXECUTABLE = 1 << 6, |
}; |
AppCacheEntry() |
@@ -46,6 +47,7 @@ |
bool IsForeign() const { return (types_ & FOREIGN) != 0; } |
bool IsFallback() const { return (types_ & FALLBACK) != 0; } |
bool IsIntercept() const { return (types_ & INTERCEPT) != 0; } |
+ bool IsExecutable() const { return (types_ & EXECUTABLE) != 0; } |
int64 response_id() const { return response_id_; } |
void set_response_id(int64 id) { response_id_ = id; } |