Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(299)

Side by Side Diff: components/viz/hit_test/public/interfaces/hit_test_data.mojom

Issue 2908783002: WIP Hittest Component.
Patch Set: change HitTestFlags to constants so we can mix and match and convert to struct naming convention Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/viz/hit_test/public/interfaces/OWNERS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module viz.hit_test.mojom;
6
7 import "cc/ipc/surface_id.mojom";
8 import "ui/gfx/geometry/mojo/geometry.mojom";
9 import "ui/gfx/mojo/transform.mojom";
10
11 // Region maps to this surface ( me ).
12 const uint32 kHitTestMine = 0x01;
13
14 // Region ignored for hit testing ( transparent backgrounds & hover:none ).
15 const uint32 kHitTestIgnore = 0x02;
16
17 // Region maps to child surface ( OOPIF ).
18 const uint32 kHitTestChildSurface = 0x04;
19
20 // Irregular boundary - send HitTestRequest to resolve.
21 const uint32 kHitTestAsk = 0x08;
22
23 // No touch event handler exists - no need to send touch events.
24 const uint32 kHitTestNoTouchEventHandler = 0x10;
sadrul 2017/06/16 17:07:56 Instead of saying 'no touch handler', I would rath
gklassen 2017/06/27 19:29:02 Done.
25
26 struct HitTestRegion {
27
28 // Flags to indicate the type of HitTestRegion.
29 uint32 flags;
30
31 // SurfaceId is required when flags = kHitTestChildSurface.
32 cc.mojom.SurfaceId surface_id;
33
34 // The rect of the region in the coordinate space of the embedder.
35 gfx.mojom.Rect rect;
36
37 // The transform applied to the child region.
sadrul 2017/06/16 17:07:56 Do you mean the transform of the region with respe
gklassen 2017/06/27 19:29:02 Done.
38 gfx.mojom.Transform transform;
39 };
40
41 struct HitTestData {
42
43 // SurfaceId corresponding to this HitTestData.
44 cc.mojom.SurfaceId surface_id;
45
46 // The list of sub-regions in this surface.
47 array<HitTestRegion> regions; // in front to back z-order
48 };
OLDNEW
« no previous file with comments | « components/viz/hit_test/public/interfaces/OWNERS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698