blob: a0350bccb163a856b1dd06d3de62295988e5602d [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 module_b;
import "mojo/public/js/test/module_a.test-mojom";
import "mojo/public/js/test/module_b_1.test-mojom";
struct TestStructB2 {
module_a.TestStructA1 a1;
module_a.TestStructA2 a2;
TestStructB2 b2;
};
interface TestInterface {
PassA1(module_a.TestStructA1 a1);
PassB1(TestStructB1 b1);
PassB2(TestStructB2 b2);
};