Chromium Code Reviews| Index: extensions/common/constants.h |
| diff --git a/extensions/common/constants.h b/extensions/common/constants.h |
| index 185ab79d0146dd89d9de725daa9c9ea3c29e691e..563e5db9c7a9cce394e2336f216695fc8fc12061 100644 |
| --- a/extensions/common/constants.h |
| +++ b/extensions/common/constants.h |
| @@ -135,6 +135,14 @@ enum AppLaunchSource { |
| NUM_APP_LAUNCH_SOURCES |
| }; |
| +// Type of action to launch. |
| +enum class ActionType { NEW_NOTE }; |
| + |
| +// Action-specific data to launch with. |
| +struct ActionData { |
| + ActionType action_type; |
|
Devlin
2016/08/11 20:51:21
Is there a reason to not use app_runtime::ActionDa
jdufault
2016/08/12 18:56:55
Done.
|
| +}; |
| + |
| // This enum is used for the launch type the user wants to use for an |
| // application. |
| // Do not remove items or re-order this enum as it is used in preferences |