| 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 module sample { | 5 module sample { |
| 6 | 6 |
| 7 // This sample shows how handles to MessagePipes can be sent as both parameters | 7 // This sample shows how handles to MessagePipes can be sent as both parameters |
| 8 // to methods as well as fields on structs. | 8 // to methods as well as fields on structs. |
| 9 | 9 |
| 10 struct Request { | 10 struct Request { |
| 11 int32 x; | 11 int32 x; |
| 12 handle<message_pipe> pipe; | 12 handle<message_pipe> pipe; |
| 13 handle<message_pipe>[] more_pipes; | 13 handle<message_pipe>[] more_pipes; |
| 14 }; | 14 }; |
| 15 | 15 |
| 16 struct Response { | 16 struct Response { |
| 17 int32 x; | 17 int32 x; |
| 18 handle<message_pipe> pipe; | 18 handle<message_pipe> pipe; |
| 19 }; | 19 }; |
| 20 | 20 |
| 21 [Peer=FactoryClient] | 21 [Client=FactoryClient] |
| 22 interface Factory { | 22 interface Factory { |
| 23 DoStuff(Request request, handle<message_pipe> pipe); | 23 DoStuff(Request request, handle<message_pipe> pipe); |
| 24 DoStuff2(handle<data_pipe_consumer> pipe); | 24 DoStuff2(handle<data_pipe_consumer> pipe); |
| 25 }; | 25 }; |
| 26 | 26 |
| 27 [Peer=Factory] | |
| 28 interface FactoryClient { | 27 interface FactoryClient { |
| 29 DidStuff(Response response, string text); | 28 DidStuff(Response response, string text); |
| 30 DidStuff2(string text); | 29 DidStuff2(string text); |
| 31 }; | 30 }; |
| 32 | 31 |
| 33 } // module sample | 32 } // module sample |
| OLD | NEW |