chromium/components/input/touch_event_stream_validator_unittest.cc

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

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/342213636): Remove this and spanify to fix the errors.
#pragma allow_unsafe_buffers
#endif

#include "components/input/touch_event_stream_validator.h"

#include <stddef.h>

#include "components/input/web_touch_event_traits.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/input/synthetic_web_input_event_builders.h"

WebInputEvent;
WebTouchEvent;
WebTouchPoint;

namespace input {

TEST(TouchEventStreamValidator, ValidTouchStream) {}

TEST(TouchEventStreamValidator, ResetOnNewTouchStream) {}

TEST(TouchEventStreamValidator, MissedTouchStart) {}

TEST(TouchEventStreamValidator, MissedTouchEnd) {}

TEST(TouchEventStreamValidator, EmptyEvent) {}

TEST(TouchEventStreamValidator, InvalidEventType) {}

TEST(TouchEventStreamValidator, InvalidPointStates) {}

}  // namespace input