#ifndef EXTENSIONS_RENDERER_API_AUTOMATION_AUTOMATION_API_CONVERTERS_H_
#define EXTENSIONS_RENDERER_API_AUTOMATION_AUTOMATION_API_CONVERTERS_H_
#include "extensions/common/api/automation.h"
#include "ui/accessibility/ax_enums.mojom-shared.h"
#include "ui/accessibility/platform/automation/automation_api_util.h"
namespace extensions {
api::automation::MarkerType ConvertMarkerTypeFromAXToAutomation(
ax::mojom::MarkerType ax);
api::automation::TreeChangeType ConvertToAutomationTreeChangeType(
ax::mojom::Mutation change_type);
ui::TreeChangeObserverFilter ConvertAutomationTreeChangeObserverFilter(
api::automation::TreeChangeObserverFilter filter);
api::automation::EventType AXEventToAutomationEventType(
ax::mojom::Event event_type);
api::automation::EventType AXGeneratedEventToAutomationEventType(
ui::AXEventGenerator::Event event_type);
}
#endif