summaryrefslogtreecommitdiffstats
path: root/mojo/public/bindings/tests/math_calculator.mojom
diff options
context:
space:
mode:
authordavemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-01 00:22:56 +0000
committerdavemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-01 00:22:56 +0000
commite103c2c2aaa1ad2515e280eb5826da18beb5741b (patch)
treec2e9dd34157dada99eb545f564fe7a2433d87906 /mojo/public/bindings/tests/math_calculator.mojom
parent047340fe8c6472965b6a0a6883442d2d7123ec83 (diff)
downloadchromium_src-e103c2c2aaa1ad2515e280eb5826da18beb5741b.zip
chromium_src-e103c2c2aaa1ad2515e280eb5826da18beb5741b.tar.gz
chromium_src-e103c2c2aaa1ad2515e280eb5826da18beb5741b.tar.bz2
Create response_parameters as part of mojom
BUG=None TEST=None R=darin@chromium.org, darin Review URL: https://codereview.chromium.org/184813004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254288 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/public/bindings/tests/math_calculator.mojom')
-rw-r--r--mojo/public/bindings/tests/math_calculator.mojom8
1 files changed, 4 insertions, 4 deletions
diff --git a/mojo/public/bindings/tests/math_calculator.mojom b/mojo/public/bindings/tests/math_calculator.mojom
index 3b8cb7f..b38a8e2 100644
--- a/mojo/public/bindings/tests/math_calculator.mojom
+++ b/mojo/public/bindings/tests/math_calculator.mojom
@@ -6,14 +6,14 @@ module math {
[Peer=CalculatorUI]
interface Calculator {
- Clear() @0;
- Add(double value @0) @1;
- Multiply(double value @0) @2;
+ Clear@0();
+ Add@1(double value @0);
+ Multiply@2(double value @0);
};
[Peer=Calculator]
interface CalculatorUI {
- Output(double value @0) @0;
+ Output@0(double value @0);
};
}