OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 module cc.mojom; | 5 module cc.mojom; |
6 | 6 |
7 import "cc/ipc/begin_frame_args.mojom"; | 7 import "cc/ipc/begin_frame_args.mojom"; |
| 8 import "cc/ipc/compositor_frame.mojom"; |
8 import "cc/ipc/compositor_frame_metadata.mojom"; | 9 import "cc/ipc/compositor_frame_metadata.mojom"; |
9 import "cc/ipc/filter_operation.mojom"; | 10 import "cc/ipc/filter_operation.mojom"; |
10 import "cc/ipc/filter_operations.mojom"; | 11 import "cc/ipc/filter_operations.mojom"; |
11 import "cc/ipc/quads.mojom"; | 12 import "cc/ipc/quads.mojom"; |
12 import "cc/ipc/render_pass.mojom"; | 13 import "cc/ipc/render_pass.mojom"; |
13 import "cc/ipc/render_pass_id.mojom"; | 14 import "cc/ipc/render_pass_id.mojom"; |
14 import "cc/ipc/returned_resource.mojom"; | 15 import "cc/ipc/returned_resource.mojom"; |
15 import "cc/ipc/selection.mojom"; | 16 import "cc/ipc/selection.mojom"; |
16 import "cc/ipc/shared_quad_state.mojom"; | 17 import "cc/ipc/shared_quad_state.mojom"; |
17 import "cc/ipc/surface_id.mojom"; | 18 import "cc/ipc/surface_id.mojom"; |
18 import "cc/ipc/surface_sequence.mojom"; | 19 import "cc/ipc/surface_sequence.mojom"; |
19 import "cc/ipc/transferable_resource.mojom"; | 20 import "cc/ipc/transferable_resource.mojom"; |
20 | 21 |
21 // All functions on this interface echo their arguments to test StructTraits | 22 // All functions on this interface echo their arguments to test StructTraits |
22 // serialization and deserialization. | 23 // serialization and deserialization. |
23 interface TraitsTestService { | 24 interface TraitsTestService { |
24 [Sync] | 25 [Sync] |
25 EchoBeginFrameArgs(BeginFrameArgs b) => (BeginFrameArgs pass); | 26 EchoBeginFrameArgs(BeginFrameArgs b) => (BeginFrameArgs pass); |
26 | 27 |
27 [Sync] | 28 [Sync] |
| 29 EchoCompositorFrame(CompositorFrame c) => (CompositorFrame pass); |
| 30 |
| 31 [Sync] |
28 EchoCompositorFrameMetadata(CompositorFrameMetadata c) => | 32 EchoCompositorFrameMetadata(CompositorFrameMetadata c) => |
29 (CompositorFrameMetadata pass); | 33 (CompositorFrameMetadata pass); |
30 | 34 |
31 [Sync] | 35 [Sync] |
32 EchoFilterOperation(FilterOperation f) => (FilterOperation pass); | 36 EchoFilterOperation(FilterOperation f) => (FilterOperation pass); |
33 | 37 |
34 [Sync] | 38 [Sync] |
35 EchoFilterOperations(FilterOperations f) => (FilterOperations pass); | 39 EchoFilterOperations(FilterOperations f) => (FilterOperations pass); |
36 | 40 |
37 [Sync] | 41 [Sync] |
(...skipping 17 matching lines...) Expand all Loading... |
55 [Sync] | 59 [Sync] |
56 EchoSurfaceId(SurfaceId s) => (SurfaceId pass); | 60 EchoSurfaceId(SurfaceId s) => (SurfaceId pass); |
57 | 61 |
58 [Sync] | 62 [Sync] |
59 EchoSurfaceSequence(SurfaceSequence s) => (SurfaceSequence pass); | 63 EchoSurfaceSequence(SurfaceSequence s) => (SurfaceSequence pass); |
60 | 64 |
61 [Sync] | 65 [Sync] |
62 EchoTransferableResource(TransferableResource t) => | 66 EchoTransferableResource(TransferableResource t) => |
63 (TransferableResource pass); | 67 (TransferableResource pass); |
64 }; | 68 }; |
OLD | NEW |