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

Unified Diff: webkit/appcache/appcache_entry.h

Issue 8396013: AppCache INTERCEPT namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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 113546)
+++ webkit/appcache/appcache_entry.h (working copy)
@@ -22,6 +22,7 @@
EXPLICIT = 1 << 2,
FOREIGN = 1 << 3,
FALLBACK = 1 << 4,
+ INTERCEPT = 1 << 5,
};
AppCacheEntry()
@@ -43,6 +44,7 @@
bool IsExplicit() const { return (types_ & EXPLICIT) != 0; }
bool IsForeign() const { return (types_ & FOREIGN) != 0; }
bool IsFallback() const { return (types_ & FALLBACK) != 0; }
+ bool IsIntercept() const { return (types_ & INTERCEPT) != 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