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

Side by Side Diff: services/service_manager/public/interfaces/service_manager.mojom

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 months 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 shell.mojom; 5 module shell.mojom;
6 6
7 import "services/shell/public/interfaces/connector.mojom"; 7 import "services/service_manager/public/interfaces/connector.mojom";
8 8
9 struct ServiceInfo { 9 struct ServiceInfo {
10 uint32 id; 10 uint32 id;
11 Identity identity; 11 Identity identity;
12 uint32 pid; 12 uint32 pid;
13 }; 13 };
14 14
15 // Implemented by a client that wishes to be informed when the list of running 15 // Implemented by a client that wishes to be informed when the list of running
16 // services changes. 16 // services changes.
17 interface ServiceManagerListener { 17 interface ServiceManagerListener {
(...skipping 14 matching lines...) Expand all
32 32
33 // Called when the Service Manager has stopped tracking a service. (i.e. when 33 // Called when the Service Manager has stopped tracking a service. (i.e. when
34 // it has ended/quit). 34 // it has ended/quit).
35 OnServiceStopped(Identity identity); 35 OnServiceStopped(Identity identity);
36 }; 36 };
37 37
38 interface ServiceManager { 38 interface ServiceManager {
39 // The listener is removed when the |listener| pipe is closed. 39 // The listener is removed when the |listener| pipe is closed.
40 AddListener(ServiceManagerListener listener); 40 AddListener(ServiceManagerListener listener);
41 }; 41 };
OLDNEW
« no previous file with comments | « services/service_manager/public/interfaces/service_factory.mojom ('k') | services/service_manager/public/java/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698