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 sample { | 5 module sample { |
6 | 6 |
| 7 struct Coord { |
| 8 int32 x; |
| 9 int32 y; |
| 10 }; |
| 11 |
7 [Peer=ProviderClient] | 12 [Peer=ProviderClient] |
8 interface Provider { | 13 interface Provider { |
9 EchoString(string a) => (string a); | 14 EchoString(string a) => (string a); |
10 EchoStrings(string a, string b) => (string a, string b); | 15 EchoStrings(string a, string b) => (string a, string b); |
11 EchoMessagePipeHandle(handle<message_pipe> a) => (handle<message_pipe> a); | 16 EchoMessagePipeHandle(handle<message_pipe> a) => (handle<message_pipe> a); |
| 17 //EchoVoid() => (); |
| 18 //MakeCoord(int32 x, int32 y) => (Coord coord); |
| 19 //Make2Coords(int32 x1, int32 y1, int32 x2, int32 y2) => |
| 20 // (Coord coord1, Coord coord2); |
12 }; | 21 }; |
13 | 22 |
14 [Peer=Provider] | 23 [Peer=Provider] |
15 interface ProviderClient { | 24 interface ProviderClient { |
16 }; | 25 }; |
17 | 26 |
18 } | 27 } |
OLD | NEW |