#ifndef UI_ACTIONS_ACTION_ID_H_
#define UI_ACTIONS_ACTION_ID_H_
#define CROSS_PLATFORM_ACTION_IDS \
E(kActionCut, kActionsStart, kActionsStart, actions) \
E(kActionCopy, , actions) \
E(kActionPaste, , actions)
#define PLATFORM_SPECIFIC_ACTION_IDS
#define ACTION_IDS \
CROSS_PLATFORM_ACTION_IDS \
PLATFORM_SPECIFIC_ACTION_IDS
namespace actions {
#include "ui/actions/action_id_macros.inc"
using ActionId = int;
enum ActionIds : ActionId {
kActionsStart = 0,
ACTION_IDS
kActionsEnd,
};
#include "ui/actions/action_id_macros.inc"
}
#endif