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

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

Issue 1679573002: Move shell interfaces into the shell.mojom namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delegate
Patch Set: . Created 4 years, 10 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 2014 The Chromium Authors. All rights reserved. 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 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 mojo; 5 module mojo.shell.mojom;
6 6
7 import "mojo/shell/public/interfaces/service_provider.mojom"; 7 import "mojo/shell/public/interfaces/service_provider.mojom";
8 import "network/public/interfaces/url_loader.mojom"; 8 import "network/public/interfaces/url_loader.mojom";
9 9
10 // Specifies a whitelist of applications and services an application can connect 10 // Specifies a whitelist of applications and services an application can connect
11 // to. Connections to applications not explicitly specified here as a key are 11 // to. Connections to applications not explicitly specified here as a key are
12 // rejected. Connections to services not specified in an application's allowed 12 // rejected. Connections to services not specified in an application's allowed
13 // interfaces value are not made. 13 // interfaces value are not made.
14 // A "*" value as the only key in an otherwise empty map means the application 14 // A "*" value as the only key in an otherwise empty map means the application
15 // may connect to any other application. 15 // may connect to any other application.
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 // value of its --origin flag. 54 // value of its --origin flag.
55 // 55 //
56 // |filter| is a whitelist of application URLs and services that the target 56 // |filter| is a whitelist of application URLs and services that the target
57 // application is permitted to connect to. See documentation for 57 // application is permitted to connect to. See documentation for
58 // CapabilityFilter above. 58 // CapabilityFilter above.
59 // 59 //
60 // If the connection to |application_url| involves a content handler, then 60 // If the connection to |application_url| involves a content handler, then
61 // |content_handler_id| is the id of the deepest content handler used to 61 // |content_handler_id| is the id of the deepest content handler used to
62 // establish the connection to |application_url|. If no content handler is 62 // establish the connection to |application_url|. If no content handler is
63 // used |content_handler_id| is kInvalidApplicationID. 63 // used |content_handler_id| is kInvalidApplicationID.
64 ConnectToApplication(URLRequest application_url, 64 ConnectToApplication(mojo.URLRequest application_url,
65 ServiceProvider&? services, 65 mojo.ServiceProvider&? services,
66 ServiceProvider? exposed_services, 66 mojo.ServiceProvider? exposed_services,
67 CapabilityFilter filter) => 67 CapabilityFilter filter) =>
68 (uint32 application_id, uint32 content_handler_id); 68 (uint32 application_id, uint32 content_handler_id);
69 69
70 // When there are no more instantiated services in an application, it should 70 // When there are no more instantiated services in an application, it should
71 // start its shutdown process by calling this method. Additionally, it should 71 // start its shutdown process by calling this method. Additionally, it should
72 // keep track of any new service requests that come in. The shell will then 72 // keep track of any new service requests that come in. The shell will then
73 // call Application::OnQuitRequested and start queueing new service requests. 73 // call Application::OnQuitRequested and start queueing new service requests.
74 // If the application didn't get any new service requests in the meantime, it 74 // If the application didn't get any new service requests in the meantime, it
75 // should call the callback with a true value. Otherwise it should call it 75 // should call the callback with a true value. Otherwise it should call it
76 // with false. 76 // with false.
77 QuitApplication(); 77 QuitApplication();
78 }; 78 };
OLDNEW
« no previous file with comments | « mojo/shell/public/interfaces/content_handler.mojom ('k') | mojo/shell/runner/child/child_controller.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698