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

Unified Diff: webkit/browser/appcache/appcache_entry.h

Issue 22314003: NavigationController prototype Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: NavController prototype - chrome side Created 7 years, 3 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/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; }
« no previous file with comments | « webkit/browser/appcache/appcache_backend_impl.cc ('k') | webkit/browser/appcache/appcache_executable_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698