| 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"; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 EchoCompositorFrameMetadata(CompositorFrameMetadata c) => | 32 EchoCompositorFrameMetadata(CompositorFrameMetadata c) => |
| 33 (CompositorFrameMetadata pass); | 33 (CompositorFrameMetadata pass); |
| 34 | 34 |
| 35 [Sync] | 35 [Sync] |
| 36 EchoFilterOperation(FilterOperation f) => (FilterOperation pass); | 36 EchoFilterOperation(FilterOperation f) => (FilterOperation pass); |
| 37 | 37 |
| 38 [Sync] | 38 [Sync] |
| 39 EchoFilterOperations(FilterOperations f) => (FilterOperations pass); | 39 EchoFilterOperations(FilterOperations f) => (FilterOperations pass); |
| 40 | 40 |
| 41 [Sync] | 41 [Sync] |
| 42 EchoQuadList(QuadList q) => (QuadList pass); | |
| 43 | |
| 44 [Sync] | |
| 45 EchoRenderPass(RenderPass r) => (RenderPass pass); | 42 EchoRenderPass(RenderPass r) => (RenderPass pass); |
| 46 | 43 |
| 47 [Sync] | 44 [Sync] |
| 48 EchoRenderPassId(RenderPassId r) => (RenderPassId pass); | 45 EchoRenderPassId(RenderPassId r) => (RenderPassId pass); |
| 49 | 46 |
| 50 [Sync] | 47 [Sync] |
| 51 EchoReturnedResource(ReturnedResource r) => (ReturnedResource pass); | 48 EchoReturnedResource(ReturnedResource r) => (ReturnedResource pass); |
| 52 | 49 |
| 53 [Sync] | 50 [Sync] |
| 54 EchoSelection(Selection s) => (Selection pass); | 51 EchoSelection(Selection s) => (Selection pass); |
| 55 | 52 |
| 56 [Sync] | 53 [Sync] |
| 57 EchoSharedQuadState(SharedQuadState s) => (SharedQuadState pass); | 54 EchoSharedQuadState(SharedQuadState s) => (SharedQuadState pass); |
| 58 | 55 |
| 59 [Sync] | 56 [Sync] |
| 60 EchoSurfaceId(SurfaceId s) => (SurfaceId pass); | 57 EchoSurfaceId(SurfaceId s) => (SurfaceId pass); |
| 61 | 58 |
| 62 [Sync] | 59 [Sync] |
| 63 EchoSurfaceSequence(SurfaceSequence s) => (SurfaceSequence pass); | 60 EchoSurfaceSequence(SurfaceSequence s) => (SurfaceSequence pass); |
| 64 | 61 |
| 65 [Sync] | 62 [Sync] |
| 66 EchoTransferableResource(TransferableResource t) => | 63 EchoTransferableResource(TransferableResource t) => |
| 67 (TransferableResource pass); | 64 (TransferableResource pass); |
| 68 }; | 65 }; |
| OLD | NEW |