blob: 266e9bf74370c0ad5f2b61d6217d6c7f3095d9e8 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_EVENTS_EVENT_UTIL_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_EVENTS_EVENT_UTIL_H_
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/event_type_names.h"
#include "third_party/blink/renderer/platform/wtf/forward.h"
#include <vector>
namespace blink {
namespace event_util {
CORE_EXPORT const Vector<AtomicString>& MouseButtonEventTypes();
CORE_EXPORT bool IsMouseButtonEventType(const AtomicString& event_type);
CORE_EXPORT bool IsPointerEventType(const AtomicString& event_type);
CORE_EXPORT bool IsDOMMutationEventType(const AtomicString& event_type);
} // namespace event_util
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_EVENTS_EVENT_UTIL_H_