blob: f5ca2a767a92e839b53ec22daa0e2573df43240e [file] [log] [blame]
// Copyright 2020 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 chromecast.mojom;
interface TestAdder {
Add(int32 a, int32 b) => (int32 result);
};
interface TestDoubler {
Double(int32 x) => (int32 result);
};