blob: af2e9e89cc9b387827d54759382d763d1a8c9ebd [file] [log] [blame]
// Copyright 2019 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 content_capture.mojom;
import "components/content_capture/common/content_capture_data.mojom";
// All functions on this interface echo their arguments to test StructTraits
// serialization and deserialization.
interface TraitsTestService {
[Sync]
EchoContentCaptureData(ContentCaptureData i) => (ContentCaptureData pass);
};