// 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. #ifndef COMPONENTS_INPUT_INPUT_EVENT_STREAM_VALIDATOR_H_ #define COMPONENTS_INPUT_INPUT_EVENT_STREAM_VALIDATOR_H_ #include <string> #include "components/input/gesture_event_stream_validator.h" #include "components/input/touch_event_stream_validator.h" namespace blink { class WebInputEvent; } namespace input { // DCHECKs that the stream of WebInputEvents passed to OnEvent is // valid. Currently only validates touch and touchscreen gesture events. class InputEventStreamValidator { … }; } // namespace input #endif // COMPONENTS_INPUT_INPUT_EVENT_STREAM_VALIDATOR_H_