chromium/third_party/blink/renderer/core/events/event_util.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace event_util

}  // namespace blink