Index: extensions/common/extension.h |
diff --git a/extensions/common/extension.h b/extensions/common/extension.h |
index 4c76478b50de4fb8371c0ba542fa7e5953ef3e3a..942e371ce763185e3e4adb26d13daec76abc713e 100644 |
--- a/extensions/common/extension.h |
+++ b/extensions/common/extension.h |
@@ -63,6 +63,7 @@ class Extension : public base::RefCountedThreadSafe<Extension> { |
enum State { |
DISABLED = 0, |
ENABLED, |
+ LOCKED, |
// An external extension that the user uninstalled. We should not reinstall |
// such extensions on startup. |
EXTERNAL_EXTENSION_UNINSTALLED, |
@@ -539,6 +540,7 @@ struct UnloadedExtensionInfo { |
REASON_TERMINATE, // Extension has terminated. |
REASON_BLACKLIST, // Extension has been blacklisted. |
REASON_PROFILE_SHUTDOWN, // Profile is being shut down. |
+ REASON_PROFILE_LOCK, // Profile is being locked. |
noms (inactive)
2014/11/12 19:23:51
nit: is being locked or has already been locked?
Mike Lerman
2014/11/12 20:58:42
Re-written.
|
}; |
Reason reason; |