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

Side by Side Diff: cc/ipc/traits_test_service.mojom

Issue 2174843003: cc mojo: Use ArrayDataViews in RenderPasses (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix RenderPassId Created 4 years, 4 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 | « cc/ipc/struct_traits_unittest.cc ('k') | cc/ipc/typemaps.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 };
OLDNEW
« no previous file with comments | « cc/ipc/struct_traits_unittest.cc ('k') | cc/ipc/typemaps.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698