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

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

Issue 184813004: Create response_parameters as part of mojom (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix up mojom files Created 6 years, 10 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
« no previous file with comments | « mojo/public/bindings/pylib/parse/mojo_translate.py ('k') | mojo/public/bindings/tests/sample_service.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/bindings/tests/math_calculator.mojom
diff --git a/mojo/public/bindings/tests/math_calculator.mojom b/mojo/public/bindings/tests/math_calculator.mojom
index 3b8cb7f9dea00df80c9cfa6ce5568c097002864b..b38a8e255d5aecffcaf9483e8ddd3f8442aa805b 100644
--- a/mojo/public/bindings/tests/math_calculator.mojom
+++ b/mojo/public/bindings/tests/math_calculator.mojom
@@ -6,14 +6,14 @@ module math {
[Peer=CalculatorUI]
interface Calculator {
- Clear() @0;
- Add(double value @0) @1;
- Multiply(double value @0) @2;
+ Clear@0();
+ Add@1(double value @0);
+ Multiply@2(double value @0);
};
[Peer=Calculator]
interface CalculatorUI {
- Output(double value @0) @0;
+ Output@0(double value @0);
};
}
« no previous file with comments | « mojo/public/bindings/pylib/parse/mojo_translate.py ('k') | mojo/public/bindings/tests/sample_service.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698