Chromium Code Reviews| Index: components/viz/hittest/public/interfaces/hittest_data.mojom |
| diff --git a/components/viz/hittest/public/interfaces/hittest_data.mojom b/components/viz/hittest/public/interfaces/hittest_data.mojom |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..635429ea9b09f685948ed99a8e8e1810f8b26bc9 |
| --- /dev/null |
| +++ b/components/viz/hittest/public/interfaces/hittest_data.mojom |
| @@ -0,0 +1,31 @@ |
| +// Copyright 2016 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. |
| + |
| +module viz.hittest.mojom; |
| + |
| +import "cc/ipc/surface_id.mojom"; |
| +import "ui/gfx/geometry/mojo/geometry.mojom"; |
| +import "ui/gfx/mojo/transform.mojom"; |
| + |
| +enum HittestRegionFlags { |
| + HITTEST_NONE = 0, |
|
rjkroege
2017/06/02 22:45:46
say what they are.
gklassen
2017/06/05 21:32:14
Done.
|
| + HITTEST_SURFACE, |
| + HITTEST_ASK, |
| + HITTEST_NO_TOUCH_EVENT_HANDLER, |
| + HITTEST_IGNORE |
| +}; |
| + |
| +struct HittestRegion { |
| + cc.mojom.SurfaceId surface_id_; |
| + HittestRegionFlags flags_; |
| + gfx.mojom.Rect rect_; |
| + gfx.mojom.Transform transform_; |
| +}; |
| + |
| +struct HittestData { |
| + cc.mojom.SurfaceId surface_id_; |
|
rjkroege
2017/06/02 22:45:46
conceivably this should be the FrameSink ID instea
gklassen
2017/06/05 21:32:14
Using FrameSink ID would make things simpler - her
|
| + gfx.mojom.Rect rect_; |
| + HittestRegionFlags flags_; |
| + array<HittestRegion> regions_; // in z-order |
|
rjkroege
2017/06/02 22:45:46
ascending or descending
|
| +}; |