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

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

Issue 2686833003: CopyOutputResult must have a working release callback when received over mojo (Closed)
Patch Set: c Created 3 years, 10 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
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/copy_output_request.mojom"; 10 import "cc/ipc/copy_output_request.mojom";
11 import "cc/ipc/copy_output_result.mojom"; 11 import "cc/ipc/copy_output_result.mojom";
12 import "cc/ipc/filter_operation.mojom"; 12 import "cc/ipc/filter_operation.mojom";
13 import "cc/ipc/filter_operations.mojom"; 13 import "cc/ipc/filter_operations.mojom";
14 import "cc/ipc/quads.mojom"; 14 import "cc/ipc/quads.mojom";
15 import "cc/ipc/render_pass.mojom"; 15 import "cc/ipc/render_pass.mojom";
16 import "cc/ipc/returned_resource.mojom"; 16 import "cc/ipc/returned_resource.mojom";
17 import "cc/ipc/selection.mojom"; 17 import "cc/ipc/selection.mojom";
18 import "cc/ipc/shared_quad_state.mojom"; 18 import "cc/ipc/shared_quad_state.mojom";
19 import "cc/ipc/single_release_callback.mojom";
19 import "cc/ipc/surface_id.mojom"; 20 import "cc/ipc/surface_id.mojom";
20 import "cc/ipc/surface_reference.mojom"; 21 import "cc/ipc/surface_reference.mojom";
21 import "cc/ipc/surface_sequence.mojom"; 22 import "cc/ipc/surface_sequence.mojom";
22 import "cc/ipc/texture_mailbox.mojom"; 23 import "cc/ipc/texture_mailbox.mojom";
23 import "cc/ipc/transferable_resource.mojom"; 24 import "cc/ipc/transferable_resource.mojom";
24 25
25 // All functions on this interface echo their arguments to test StructTraits 26 // All functions on this interface echo their arguments to test StructTraits
26 // serialization and deserialization. 27 // serialization and deserialization.
27 interface TraitsTestService { 28 interface TraitsTestService {
28 [Sync] 29 [Sync]
(...skipping 21 matching lines...) Expand all
50 [Sync] 51 [Sync]
51 EchoRenderPass(RenderPass r) => (RenderPass pass); 52 EchoRenderPass(RenderPass r) => (RenderPass pass);
52 53
53 [Sync] 54 [Sync]
54 EchoReturnedResource(ReturnedResource r) => (ReturnedResource pass); 55 EchoReturnedResource(ReturnedResource r) => (ReturnedResource pass);
55 56
56 [Sync] 57 [Sync]
57 EchoSelection(Selection s) => (Selection pass); 58 EchoSelection(Selection s) => (Selection pass);
58 59
59 [Sync] 60 [Sync]
61 EchoSingleReleaseCallback(SingleReleaseCallback s)
62 => (SingleReleaseCallback pass);
63
64 [Sync]
60 EchoSharedQuadState(SharedQuadState s) => (SharedQuadState pass); 65 EchoSharedQuadState(SharedQuadState s) => (SharedQuadState pass);
61 66
62 [Sync] 67 [Sync]
63 EchoSurfaceId(SurfaceId s) => (SurfaceId pass); 68 EchoSurfaceId(SurfaceId s) => (SurfaceId pass);
64 69
65 [Sync] 70 [Sync]
66 EchoSurfaceReference(SurfaceReference r) => (SurfaceReference pass); 71 EchoSurfaceReference(SurfaceReference r) => (SurfaceReference pass);
67 72
68 [Sync] 73 [Sync]
69 EchoSurfaceSequence(SurfaceSequence s) => (SurfaceSequence pass); 74 EchoSurfaceSequence(SurfaceSequence s) => (SurfaceSequence pass);
70 75
71 [Sync] 76 [Sync]
72 EchoTextureMailbox(TextureMailbox t) => 77 EchoTextureMailbox(TextureMailbox t) =>
73 (TextureMailbox pass); 78 (TextureMailbox pass);
74 79
75 [Sync] 80 [Sync]
76 EchoTransferableResource(TransferableResource t) => 81 EchoTransferableResource(TransferableResource t) =>
77 (TransferableResource pass); 82 (TransferableResource pass);
78 }; 83 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698