| 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.mojom"; |
| 9 import "cc/ipc/compositor_frame_metadata.mojom"; | 9 import "cc/ipc/compositor_frame_metadata.mojom"; |
| 10 import "cc/ipc/filter_operation.mojom"; | 10 import "cc/ipc/filter_operation.mojom"; |
| 11 import "cc/ipc/filter_operations.mojom"; | 11 import "cc/ipc/filter_operations.mojom"; |
| 12 import "cc/ipc/quads.mojom"; | 12 import "cc/ipc/quads.mojom"; |
| 13 import "cc/ipc/render_pass.mojom"; | 13 import "cc/ipc/render_pass.mojom"; |
| 14 import "cc/ipc/returned_resource.mojom"; | 14 import "cc/ipc/returned_resource.mojom"; |
| 15 import "cc/ipc/selection.mojom"; | 15 import "cc/ipc/selection.mojom"; |
| 16 import "cc/ipc/shared_quad_state.mojom"; | 16 import "cc/ipc/shared_quad_state.mojom"; |
| 17 import "cc/ipc/surface_id.mojom"; | 17 import "cc/ipc/surface_id.mojom"; |
| 18 import "cc/ipc/surface_reference.mojom"; | 18 import "cc/ipc/surface_reference.mojom"; |
| 19 import "cc/ipc/surface_sequence.mojom"; | 19 import "cc/ipc/surface_sequence.mojom"; |
| 20 import "cc/ipc/texture_mailbox.mojom"; |
| 20 import "cc/ipc/transferable_resource.mojom"; | 21 import "cc/ipc/transferable_resource.mojom"; |
| 21 | 22 |
| 22 // All functions on this interface echo their arguments to test StructTraits | 23 // All functions on this interface echo their arguments to test StructTraits |
| 23 // serialization and deserialization. | 24 // serialization and deserialization. |
| 24 interface TraitsTestService { | 25 interface TraitsTestService { |
| 25 [Sync] | 26 [Sync] |
| 26 EchoBeginFrameArgs(BeginFrameArgs b) => (BeginFrameArgs pass); | 27 EchoBeginFrameArgs(BeginFrameArgs b) => (BeginFrameArgs pass); |
| 27 | 28 |
| 28 [Sync] | 29 [Sync] |
| 29 EchoCompositorFrame(CompositorFrame c) => (CompositorFrame pass); | 30 EchoCompositorFrame(CompositorFrame c) => (CompositorFrame pass); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 53 [Sync] | 54 [Sync] |
| 54 EchoSurfaceId(SurfaceId s) => (SurfaceId pass); | 55 EchoSurfaceId(SurfaceId s) => (SurfaceId pass); |
| 55 | 56 |
| 56 [Sync] | 57 [Sync] |
| 57 EchoSurfaceReference(SurfaceReference r) => (SurfaceReference pass); | 58 EchoSurfaceReference(SurfaceReference r) => (SurfaceReference pass); |
| 58 | 59 |
| 59 [Sync] | 60 [Sync] |
| 60 EchoSurfaceSequence(SurfaceSequence s) => (SurfaceSequence pass); | 61 EchoSurfaceSequence(SurfaceSequence s) => (SurfaceSequence pass); |
| 61 | 62 |
| 62 [Sync] | 63 [Sync] |
| 64 EchoTextureMailbox(TextureMailbox t) => |
| 65 (TextureMailbox pass); |
| 66 |
| 67 [Sync] |
| 63 EchoTransferableResource(TransferableResource t) => | 68 EchoTransferableResource(TransferableResource t) => |
| 64 (TransferableResource pass); | 69 (TransferableResource pass); |
| 65 }; | 70 }; |
| OLD | NEW |