chromium/components/input/input_event_stream_validator.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/input_event_stream_validator.h"

#include "base/check.h"
#include "base/command_line.h"
#include "third_party/blink/public/common/input/web_gesture_event.h"
#include "third_party/blink/public/common/input/web_input_event.h"
#include "ui/events/blink/web_input_event_traits.h"
#include "components/input/switches.h"

WebInputEvent;
WebGestureEvent;
WebTouchEvent;

namespace input {

InputEventStreamValidator::InputEventStreamValidator()
    :{}

InputEventStreamValidator::~InputEventStreamValidator() {}

void InputEventStreamValidator::Validate(const WebInputEvent& event) {}

bool InputEventStreamValidator::ValidateImpl(
    const blink::WebInputEvent& event,
    std::string* error_msg) {}

}  // namespace input