| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 module mojo; | 5 module mojo; |
| 6 | 6 |
| 7 [Client=TestClient] | |
| 8 interface TestService { | 7 interface TestService { |
| 9 Test(string test_string); | 8 Test(string test_string) => (); |
| 10 }; | |
| 11 | |
| 12 interface TestClient { | |
| 13 AckTest(); | |
| 14 }; | 9 }; |
| 15 | 10 |
| 16 interface TestA { | 11 interface TestA { |
| 17 CallB(); | 12 CallB(); |
| 18 CallCFromB(); | 13 CallCFromB(); |
| 19 }; | 14 }; |
| 20 | 15 |
| 21 interface TestB { | 16 interface TestB { |
| 22 B() => (); | 17 B() => (); |
| 23 CallC() => (); | 18 CallC() => (); |
| 24 }; | 19 }; |
| 25 | 20 |
| 26 interface TestC { | 21 interface TestC { |
| 27 C() => (); | 22 C() => (); |
| 28 }; | 23 }; |
| OLD | NEW |