Index: extensions/common/extension.h |
diff --git a/extensions/common/extension.h b/extensions/common/extension.h |
index 391c7e521a658f4dd27589fb057afa3ee00380ca..d8453329f5627fb51064a4053042979f2bcdcb15 100644 |
--- a/extensions/common/extension.h |
+++ b/extensions/common/extension.h |
@@ -69,6 +69,7 @@ class Extension : public base::RefCountedThreadSafe<Extension> { |
// DEPRECATED: Special state for component extensions. |
// Maintained as a placeholder since states may be stored to disk. |
ENABLED_COMPONENT_DEPRECATED, |
+ // Add new states here as this enum is stored in prefs. |
NUM_STATES |
}; |
@@ -541,6 +542,7 @@ struct UnloadedExtensionInfo { |
REASON_TERMINATE, // Extension has terminated. |
REASON_BLACKLIST, // Extension has been blacklisted. |
REASON_PROFILE_SHUTDOWN, // Profile is being shut down. |
+ REASON_LOCK_ALL, // All extensions for the profile are blocked. |
}; |
Reason reason; |