Chromium Code Reviews| Index: extensions/common/constants.h |
| diff --git a/extensions/common/constants.h b/extensions/common/constants.h |
| index 185ab79d0146dd89d9de725daa9c9ea3c29e691e..2dacd6bc6be1761ddc1c5fe477ad0b6872edf588 100644 |
| --- a/extensions/common/constants.h |
| +++ b/extensions/common/constants.h |
| @@ -135,6 +135,15 @@ enum AppLaunchSource { |
| NUM_APP_LAUNCH_SOURCES |
| }; |
| +// Type of action to launch. Only applies if AppLaunchSource is set to |
| +// SOURCE_ACTION. |
|
Daniel Erat
2016/08/10 22:19:24
nit: delete obsolete second sentence
jdufault
2016/08/10 22:33:35
Done.
|
| +enum class ActionType { NEW_NOTE }; |
| + |
| +// Action-specific data to launch with. |
| +struct ActionData { |
| + ActionType action_type; |
| +}; |
| + |
| // 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 |