| Index: chrome/common/extensions/extension_constants.h
|
| diff --git a/chrome/common/extensions/extension_constants.h b/chrome/common/extensions/extension_constants.h
|
| index 580ed7581abc570d052a101b5d51dde83cd14861..44fe9419607b829067be44c50128d8113e04ac33 100644
|
| --- a/chrome/common/extensions/extension_constants.h
|
| +++ b/chrome/common/extensions/extension_constants.h
|
| @@ -237,6 +237,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 chorme.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[];
|
|
|