chromium/chromecast/browser/test_interfaces.test-mojom

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module chromecast.mojom;

interface TestAdder {
  Add(int32 a, int32 b) => (int32 result);
};

interface TestDoubler {
  Double(int32 x) => (int32 result);
};