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

Unified Diff: mojo/public/interfaces/bindings/tests/math_calculator.mojom

Issue 265793015: Mojo: Replace RemotePtr with InterfacePtr and InterfaceImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 months 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/interfaces/bindings/tests/math_calculator.mojom
diff --git a/mojo/public/interfaces/bindings/tests/math_calculator.mojom b/mojo/public/interfaces/bindings/tests/math_calculator.mojom
index e4a1c9462581730c57bb514214ec5fe2d15ecb74..0d856d4f68a6aa6b7cb1e84c2c53565334a20d61 100644
--- a/mojo/public/interfaces/bindings/tests/math_calculator.mojom
+++ b/mojo/public/interfaces/bindings/tests/math_calculator.mojom
@@ -5,14 +5,13 @@
[JavaPackage="org.chromium.mojo.bindings.test"]
module math {
-[Peer=CalculatorUI]
interface Calculator {
- Clear@0();
- Add@1(double value @0);
- Multiply@2(double value @0);
+ SetUI@0(CalculatorUI ui@0);
+ Clear@1();
+ Add@2(double value @0);
+ Multiply@3(double value @0);
};
-[Peer=Calculator]
interface CalculatorUI {
Output@0(double value @0);
};

Powered by Google App Engine
This is Rietveld 408576698