Index: mojo/public/interfaces/bindings/tests/sample_interfaces.mojom |
diff --git a/mojo/public/interfaces/bindings/tests/sample_interfaces.mojom b/mojo/public/interfaces/bindings/tests/sample_interfaces.mojom |
index 1633d8b27a4db7f405c40d0dfba2093cf81bd7b5..1e603ba761d3e42a0e7e3365d41fc0bfd1ebf74b 100644 |
--- a/mojo/public/interfaces/bindings/tests/sample_interfaces.mojom |
+++ b/mojo/public/interfaces/bindings/tests/sample_interfaces.mojom |
@@ -3,15 +3,15 @@ |
// found in the LICENSE file. |
[DartPackage="_mojo_for_test_only", |
- JavaPackage="org.chromium.mojo.bindings.test.mojom.sample", |
- JavaConstantsClassName="InterfaceConstants", |
- Foo = "hello world"] |
+JavaPackage="org.chromium.mojo.bindings.test.mojom.sample", |
+JavaConstantsClassName="InterfaceConstants", |
+Foo="hello world"] |
module sample; |
const uint64 kLong = 4405; |
enum Enum { |
- VALUE |
+ VALUE, |
}; |
interface Provider { |
@@ -23,9 +23,9 @@ interface Provider { |
}; |
interface IntegerAccessor { |
- GetInteger() => (int64 data, [MinVersion=2] Enum type); |
+ GetInteger() => (int64 data, [MinVersion=2]Enum type); |
vtl
2016/02/29 23:41:59
Do we really want to omit the space after the ']'
azani
2016/03/04 01:08:49
Done.
|
[MinVersion=1] |
- SetInteger(int64 data, [MinVersion=3] Enum type); |
+ SetInteger(int64 data, [MinVersion=3]Enum type); |
}; |
// Used for testing that structs are generated for request params and response |