chromium/ui/gfx/mojom/delegated_ink_point.mojom

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module gfx.mojom;

import "mojo/public/mojom/base/time.mojom";
import "ui/gfx/geometry/mojom/geometry.mojom";

// See ui/gfx/delegated_ink_point.h.
struct DelegatedInkPoint {
  PointF point;
  mojo_base.mojom.TimeTicks timestamp;
  int32 pointer_id;
};