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

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: snapshot 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 b38a8e255d5aecffcaf9483e8ddd3f8442aa805b..822592675b91e9b00d6d6ffb98fb4b675cd7bd1b 100644
--- a/mojo/public/interfaces/bindings/tests/math_calculator.mojom
+++ b/mojo/public/interfaces/bindings/tests/math_calculator.mojom
@@ -4,14 +4,13 @@
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