chromium/components/input/gesture_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.

#include "components/input/gesture_event_stream_validator.h"

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

WebInputEvent;
WebGestureEvent;

namespace input {
namespace {

const blink::WebGestureDevice kDefaultGestureDevice =;

blink::WebGestureEvent Build(WebInputEvent::Type type) {}

}  // namespace

TEST(GestureEventStreamValidator, ValidScroll) {}

TEST(GestureEventStreamValidator, InvalidScroll) {}

TEST(GestureEventStreamValidator, ValidFling) {}

TEST(GestureEventStreamValidator, InvalidFling) {}

TEST(GestureEventStreamValidator, ValidPinch) {}

TEST(GestureEventStreamValidator, InvalidPinch) {}

TEST(GestureEventStreamValidator, ValidTap) {}

TEST(GestureEventStreamValidator, InvalidTap) {}

}  // namespace input