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

Side by Side Diff: gpu/ipc/common/traits_test_service.mojom

Issue 2599703002: gpu: Add mojom for GpuPreferences. (Closed)
Patch Set: fix win Created 3 years, 12 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 | « gpu/ipc/common/struct_traits_unittest.cc ('k') | gpu/ipc/common/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 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
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 };
OLDNEW
« no previous file with comments | « gpu/ipc/common/struct_traits_unittest.cc ('k') | gpu/ipc/common/typemaps.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698