chromium/ui/gl/mojom/traits_test_service.mojom

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module gl.mojom;

import "ui/gl/mojom/gl_implementation.mojom";
import "ui/gl/mojom/gpu_preference.mojom";

// All functions on this interface echo their arguments to test StructTraits
// serialization and deserialization.
interface TraitsTestService {
  // Serializes and deserializes GpuPreference.
  [Sync]
  EchoGpuPreference(GpuPreference g) => (GpuPreference pass);
  // Serializes and deserializes GLImplementationParts.
  [Sync]
  EchoGLImplementationParts(
    GLImplementationParts impl) =>
      (GLImplementationParts pass);
};