Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: mojo/shell/shell.mojom

Issue 93793009: Implement ServiceManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Accidental inclusion of adb_run change Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698