Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(401)

Unified Diff: webkit/appcache/appcache_entry.h

Issue 13881003: AppCacheExecutableHandlers - parse manifest file and store the 'bit' indicating executable. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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; }

Powered by Google App Engine
This is Rietveld 408576698