test.test-fidl 330 B

123456789101112131415
  1. // Copyright 2018 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. library base.testfidl;
  5. @discoverable
  6. protocol TestInterface {
  7. Add(struct {
  8. a int32;
  9. b int32;
  10. }) -> (struct {
  11. sum int32;
  12. });
  13. };