#include "third_party/blink/renderer/core/events/event_util.h"
#include "base/containers/contains.h"
#include "third_party/blink/renderer/core/event_type_names.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/platform/wtf/std_lib_extras.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string.h"
namespace blink {
namespace event_util {
const Vector<AtomicString>& MouseButtonEventTypes() { … }
bool IsMouseButtonEventType(const AtomicString& event_type) { … }
bool IsPointerEventType(const AtomicString& event_type) { … }
MutationEventInfo IsDOMMutationEventType(const AtomicString& event_type) { … }
bool IsSnapEventType(const AtomicString& event_type) { … }
}
}