OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 module shell { | |
abarth-chromium
2013/12/15 22:54:10
So far we've been putting everything in the "mojo"
DaveMoore
2013/12/16 17:40:22
Done, but I'd like to add the ability to put bindi
| |
6 | |
7 [Peer=ShellClient] | |
8 interface Shell { | |
9 // Loads url. mojo:{service} will result in the user of the value of the | |
10 // --origin flag to the shell being used. | |
11 void Connect(string url, handle<message_pipe> client_handle); | |
12 }; | |
13 | |
14 [Peer=Shell] | |
15 interface ShellClient { | |
16 void AcceptConnection(handle<message_pipe> client_handle); | |
17 }; | |
18 | |
19 } | |
OLD | NEW |