Index: mojo/public/interfaces/bindings/tests/versioning_test_client.mojom |
diff --git a/mojo/public/interfaces/bindings/tests/versioning_test_client.mojom b/mojo/public/interfaces/bindings/tests/versioning_test_client.mojom |
index a1f0754c5d411e90b35aa9ef3a7024cec53b037d..27a231bb27e04dbf8eeb0e64571828b7eef6f713 100644 |
--- a/mojo/public/interfaces/bindings/tests/versioning_test_client.mojom |
+++ b/mojo/public/interfaces/bindings/tests/versioning_test_client.mojom |
@@ -11,7 +11,7 @@ module mojo.test.versioning; |
enum Department { |
SALES, |
- DEV |
+ DEV, |
}; |
struct Employee { |
@@ -24,12 +24,10 @@ struct Employee { |
interface HumanResourceDatabase { |
AddEmployee(Employee employee) => (bool success); |
- QueryEmployee(uint64 id, [MinVersion=1] bool retrieve_finger_print) |
- => (Employee? employee, [MinVersion=1] array<uint8>? finger_print); |
+ QueryEmployee(uint64 id, [MinVersion=1]bool retrieve_finger_print) => (Employee? employee, [MinVersion=1]array<uint8>? finger_print); |
[MinVersion=1] |
- AttachFingerPrint(uint64 id, array<uint8> finger_print) |
- => (bool success); |
+ AttachFingerPrint(uint64 id, array<uint8> finger_print) => (bool success); |
[MinVersion=2] |
ListEmployeeIds() => (array<uint64>? ids); |