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.examples { | 5 module IPC { |
6 | 6 |
7 interface EchoService { | 7 interface ClientChannel { |
8 EchoString(string? value) => (string? value); | 8 Init(handle<message_pipe>? pipe, uint32 peer_pid) => (uint32 pid); |
viettrungluu
2014/10/24 22:48:05
Why is the pipe argument optional?
Hajime Morrita
2014/10/24 22:58:20
Ouch. Copy-n-paste did bad job. Fixed.
| |
9 }; | 9 }; |
10 | 10 |
11 } | 11 } |
OLD | NEW |