blob: a04dfe659fcbd6f16ddfc02714be2eb3137b77dc [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module cc.mojom;
import "cc/ipc/copy_output_result.mojom";
import "cc/ipc/texture_mailbox.mojom";
// All functions on this interface echo their arguments to test StructTraits
// serialization and deserialization.
interface TraitsTestService {
[Sync]
EchoCopyOutputResult(CopyOutputResult c) => (CopyOutputResult pass);
[Sync]
EchoTextureMailbox(TextureMailbox t) =>
(TextureMailbox pass);
};