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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 module math {
2
3 [Peer=CalculatorUI]
4 interface Calculator {
5 void Clear() @0;
6 void Add(double value @0) @1;
7 void Multiply(double value @0) @2;
8 };
9
10 [Peer=Calculator]
DaveMoore 2013/11/11 18:49:05 This is a counter example to the Ack syntax I ment
11 interface CalculatorUI {
12 void Output(double value @0) @0;
13 };
14
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698