| 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 gpu.mojom; | 5 module gpu.mojom; |
| 6 | 6 |
| 7 import "gpu/ipc/common/dx_diag_node.mojom"; | 7 import "gpu/ipc/common/dx_diag_node.mojom"; |
| 8 import "gpu/ipc/common/gpu_info.mojom"; | 8 import "gpu/ipc/common/gpu_info.mojom"; |
| 9 import "gpu/ipc/common/gpu_preferences.mojom"; |
| 9 import "gpu/ipc/common/mailbox.mojom"; | 10 import "gpu/ipc/common/mailbox.mojom"; |
| 10 import "gpu/ipc/common/mailbox_holder.mojom"; | 11 import "gpu/ipc/common/mailbox_holder.mojom"; |
| 11 import "gpu/ipc/common/sync_token.mojom"; | 12 import "gpu/ipc/common/sync_token.mojom"; |
| 12 | 13 |
| 13 // All functions on this interface echo their arguments to test StructTraits | 14 // All functions on this interface echo their arguments to test StructTraits |
| 14 // serialization and deserialization. | 15 // serialization and deserialization. |
| 15 interface TraitsTestService { | 16 interface TraitsTestService { |
| 16 | 17 |
| 17 [Sync] | 18 [Sync] |
| 18 EchoDxDiagNode(DxDiagNode d) => (DxDiagNode pass); | 19 EchoDxDiagNode(DxDiagNode d) => (DxDiagNode pass); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 39 | 40 |
| 40 [Sync] | 41 [Sync] |
| 41 EchoVideoDecodeAcceleratorCapabilities( | 42 EchoVideoDecodeAcceleratorCapabilities( |
| 42 VideoDecodeAcceleratorCapabilities v) => | 43 VideoDecodeAcceleratorCapabilities v) => |
| 43 (VideoDecodeAcceleratorCapabilities pass); | 44 (VideoDecodeAcceleratorCapabilities pass); |
| 44 | 45 |
| 45 [Sync] | 46 [Sync] |
| 46 EchoVideoEncodeAcceleratorSupportedProfile( | 47 EchoVideoEncodeAcceleratorSupportedProfile( |
| 47 VideoEncodeAcceleratorSupportedProfile v) => | 48 VideoEncodeAcceleratorSupportedProfile v) => |
| 48 (VideoEncodeAcceleratorSupportedProfile pass); | 49 (VideoEncodeAcceleratorSupportedProfile pass); |
| 50 |
| 51 [Sync] |
| 52 EchoGpuPreferences(GpuPreferences prefs) => (GpuPreferences pass); |
| 49 }; | 53 }; |
| OLD | NEW |