Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(717)

Unified Diff: mojo/public/tests/math_calculator.idl

Issue 66353002: Mojo: RemotePtr<S> + bindings changes for Peer attribute. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move forward declarations to interface_declaration Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
+};
+
+}

Powered by Google App Engine
This is Rietveld 408576698