blob: 56cea20e7535734947c788204fddad92cf616b11 [file] [log] [blame]
// Copyright 2018 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.
// TODO(crbug.com/1227712): Migrate syntax and remove this.
library base.testfidl;
@discoverable
protocol TestInterface {
Add(struct {
a int32;
b int32;
}) -> (struct {
sum int32;
});
};