| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 import "sample_import.mojom" | 5 import "sample_import.mojom" |
| 6 import "sample_import2.mojom" | 6 import "sample_import2.mojom" |
| 7 | 7 |
| 8 module sample { | 8 module sample { |
| 9 | 9 |
| 10 struct Bar { | 10 struct Bar { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 }; | 63 }; |
| 64 Frobinate@0(Foo foo @0, BazOptions baz @1, Port port @2); | 64 Frobinate@0(Foo foo @0, BazOptions baz @1, Port port @2); |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 [Peer=Service] | 67 [Peer=Service] |
| 68 interface ServiceClient { | 68 interface ServiceClient { |
| 69 DidFrobinate@0(int32 result @0); | 69 DidFrobinate@0(int32 result @0); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } | 72 } |
| OLD | NEW |