Index: extensions/common/constants.h |
diff --git a/extensions/common/constants.h b/extensions/common/constants.h |
index d952989760ec47f99fbdb8db445233d98af5d503..a1f806936128feff60bc17c187e5518811f5e472 100644 |
--- a/extensions/common/constants.h |
+++ b/extensions/common/constants.h |
@@ -108,6 +108,23 @@ extern const char kMimeTypePng[]; |
// The extension id of the Web Store component application. |
extern const char kWebStoreAppId[]; |
+// Enumeration of possible app launch sources. |
+enum AppLaunchSource { |
+ SOURCE_UNKNOWN = 0, |
+ SOURCE_APP_LAUNCHER, |
+ SOURCE_NEW_TAB_PAGE, |
+ SOURCE_RESTART, |
+ SOURCE_RELOAD, |
+ SOURCE_FILE_HANDLER, |
+ SOURCE_URL_HANDLER, |
+ |
+ SOURCE_GETHELP_SYSTEM_TRAY, |
+ SOURCE_GETHELP_ABOUT_PAGE, |
+ SOURCE_GETHELP_KEYBOARD, |
+ |
+ NUM_APP_LAUNCH_SOURCES |
+}; |
+ |
} // namespace extensions |
namespace extension_misc { |