OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 module IPC { | |
6 | |
7 interface ClientChannelClient { | |
viettrungluu
2014/10/24 01:23:46
Note that order of interface declaration is unimpo
Hajime Morrita
2014/10/24 17:35:11
Acknowledged.
| |
8 ClientChannelWasInitialized(int32 peer_pid); | |
viettrungluu
2014/10/24 01:23:46
Is this only sent in response to InitClientChannel
Hajime Morrita
2014/10/24 17:35:11
Oh right. Done.
| |
9 }; | |
10 | |
11 [Client=ClientChannelClient] | |
12 interface ClientChannel { | |
13 InitClientChannel(handle<message_pipe>? pipe, int32 peer_pid); | |
14 }; | |
15 | |
16 } | |
OLD | NEW |