Chromium Code Reviews| Index: mojo/public/tests/math_calculator.idl |
| diff --git a/mojo/public/tests/math_calculator.idl b/mojo/public/tests/math_calculator.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d4a83a000c93376a3ffa2561c9a318a254d151d2 |
| --- /dev/null |
| +++ b/mojo/public/tests/math_calculator.idl |
| @@ -0,0 +1,15 @@ |
| +module math { |
| + |
| +[Peer=CalculatorUI] |
| +interface Calculator { |
| + void Clear() @0; |
| + void Add(double value @0) @1; |
| + void Multiply(double value @0) @2; |
| +}; |
| + |
| +[Peer=Calculator] |
|
DaveMoore
2013/11/11 18:49:05
This is a counter example to the Ack syntax I ment
|
| +interface CalculatorUI { |
| + void Output(double value @0) @0; |
| +}; |
| + |
| +} |