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 mojo { | |
6 | |
7 [Peer=ExternalServiceHost] | |
DaveMoore
2014/04/22 20:39:51
Why can't you just use the Shell / ShellClient int
Chris Masone
2014/04/22 21:16:30
This interface exists to allow me to hand the Shel
| |
8 interface ExternalService { | |
9 Activate(handle<message_pipe> shell_handle); | |
10 }; | |
11 | |
12 [Peer=ExternalService] | |
13 interface ExternalServiceHost { | |
14 }; | |
15 | |
16 } | |
OLD | NEW |