blob: a4299f073bb94d285618a4c4706870c227838416 [file] [log] [blame]
// Copyright 2014 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.
#include "content/common/input/input_event_stream_validator.h"
#include "base/command_line.h"
#include "base/logging.h"
#include "content/public/common/content_switches.h"
#include "third_party/blink/public/platform/web_gesture_event.h"
#include "third_party/blink/public/platform/web_input_event.h"
#include "ui/events/blink/web_input_event_traits.h"
using blink::WebInputEvent;
using blink::WebGestureEvent;
using blink::WebTouchEvent;
namespace content {
InputEventStreamValidator::InputEventStreamValidator()
: enabled_(base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kValidateInputEventStream)) {
}
InputEventStreamValidator::~InputEventStreamValidator() {
}
void InputEventStreamValidator::Validate(
const WebInputEvent& event,
const bool fling_cancellation_is_deferred /* = false */) {
if (!enabled_)
return;
DCHECK(ValidateImpl(event, fling_cancellation_is_deferred, &error_msg_))
<< error_msg_
<< "\nInvalid Event: " << ui::WebInputEventTraits::ToString(event);
}
bool InputEventStreamValidator::ValidateImpl(
const blink::WebInputEvent& event,
const bool fling_cancellation_is_deferred,
std::string* error_msg) {
DCHECK(error_msg);
if (WebInputEvent::IsGestureEventType(event.GetType())) {
const WebGestureEvent& gesture = static_cast<const WebGestureEvent&>(event);
// TODO(jdduke): Validate touchpad gesture streams.
if (gesture.SourceDevice() == blink::kWebGestureDeviceTouchscreen)
return gesture_validator_.Validate(
gesture, fling_cancellation_is_deferred, error_msg);
} else if (WebInputEvent::IsTouchEventType(event.GetType())) {
const WebTouchEvent& touch = static_cast<const WebTouchEvent&>(event);
return touch_validator_.Validate(touch, error_msg);
}
return true;
}
} // namespace content