// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_PUBLIC_COMMON_INPUT_WEB_POINTER_PROPERTIES_H_ #define THIRD_PARTY_BLINK_PUBLIC_COMMON_INPUT_WEB_POINTER_PROPERTIES_H_ #include "third_party/blink/public/common/common_export.h" #include "third_party/blink/public/common/input/pointer_id.h" #include "third_party/blink/public/mojom/input/input_event.mojom-shared.h" #include "ui/events/event_constants.h" #include "ui/gfx/geometry/point_f.h" #include <limits> namespace blink { // This class encapsulates the properties that are common between mouse and // pointer events and touch points as we transition towards the unified pointer // event model. // TODO(mustaq): Unify WebTouchPoint & WebMouseEvent into WebPointerEvent. // crbug.com/508283 class WebPointerProperties { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_PUBLIC_COMMON_INPUT_WEB_POINTER_PROPERTIES_H_