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

Unified Diff: webkit/common/appcache/appcache_interfaces.h

Issue 149073002: Apply automatic enum range checking for appcache enums acros IPC. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
« no previous file with comments | « content/common/appcache_messages.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/appcache/appcache_interfaces.h
diff --git a/webkit/common/appcache/appcache_interfaces.h b/webkit/common/appcache/appcache_interfaces.h
index 4accecf0eb00eb80cf931f46cc6d20d39db5a258..b631728528af82271281c79b78572a06219b1e96 100644
--- a/webkit/common/appcache/appcache_interfaces.h
+++ b/webkit/common/appcache/appcache_interfaces.h
@@ -34,7 +34,8 @@ enum Status {
CHECKING,
DOWNLOADING,
UPDATE_READY,
- OBSOLETE
+ OBSOLETE,
+ STATUS_LAST = OBSOLETE
};
enum EventID {
@@ -45,7 +46,8 @@ enum EventID {
PROGRESS_EVENT,
UPDATE_READY_EVENT,
CACHED_EVENT,
- OBSOLETE_EVENT
+ OBSOLETE_EVENT,
+ EVENT_ID_LAST = OBSOLETE_EVENT
};
// Temporarily renumber them in wierd way, to help remove LOG_TIP from WebKit
« no previous file with comments | « content/common/appcache_messages.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698