unplugged-system/external/cronet/base/fuchsia/test.test-fidl

16 lines
308 B
Plaintext
Raw Normal View History

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library base.testfidl;
@discoverable
protocol TestInterface {
Add(struct {
a int32;
b int32;
}) -> (struct {
sum int32;
});
};