Index: chrome/common/extensions/extension_constants.h |
diff --git a/chrome/common/extensions/extension_constants.h b/chrome/common/extensions/extension_constants.h |
index 0c11ff8d992ddba12d5accf64fc4cf7a8e6c4371..bad124cda4c36fd10d63a946a7406083a193c1bd 100644 |
--- a/chrome/common/extensions/extension_constants.h |
+++ b/chrome/common/extensions/extension_constants.h |
@@ -239,6 +239,15 @@ namespace extension_misc { |
UNLOAD_REASON_TERMINATE, // Extension has terminated. |
}; |
+ // The states that an app can be in, as reported by chrome.app.installState |
+ // and chrome.app.runningState. |
+ extern const char kAppStateNotInstalled[]; |
+ extern const char kAppStateInstalled[]; |
+ extern const char kAppStateDisabled[]; |
+ extern const char kAppStateRunning[]; |
+ extern const char kAppStateCannotRun[]; |
+ extern const char kAppStateReadyToRun[]; |
+ |
// Error indicating that the app notifications API is not accessible by split |
// mode extensions in incognito windows. |
extern const char kAppNotificationsIncognitoError[]; |