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

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

Issue 1311353005: Adds a way to determine id of content handler that created app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nuke comment Created 5 years, 3 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;
6 6
7 import "mojo/application/public/interfaces/service_provider.mojom"; 7 import "mojo/application/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.
16 // A "*" value as the only string in an otherwise empty array of interface names 16 // A "*" value as the only string in an otherwise empty array of interface names
17 // means the application may connect to any service in that application. 17 // means the application may connect to any service in that application.
18 // An empty interface name array means the application may not connect to any 18 // An empty interface name array means the application may not connect to any
19 // services exposed by the application it is connecting to. 19 // services exposed by the application it is connecting to.
20 struct CapabilityFilter { 20 struct CapabilityFilter {
21 map<string, array<string>> filter; 21 map<string, array<string>> filter;
22 }; 22 };
23 23
24 // An interface through which a Mojo application may communicate with the Mojo 24 // An interface through which a Mojo application may communicate with the Mojo
25 // system and request connections to other applications. 25 // system and request connections to other applications.
26 interface Shell { 26 interface Shell {
27 // Used to indicate the app was not launched by a content handler.
28 const uint32 kInvalidContentHandlerID = 0;
29
27 // Establishes a connection with another application ("target application") 30 // Establishes a connection with another application ("target application")
28 // (located at |request->url|) through which the calling application and the 31 // (located at |request->url|) through which the calling application and the
29 // target application may request services from one another. 32 // target application may request services from one another.
30 // |application_url| is a URLRequest in case this is called for an HTTP 33 // |application_url| is a URLRequest in case this is called for an HTTP
31 // navigation, in which case HTTP specific information like POST data, 34 // navigation, in which case HTTP specific information like POST data,
32 // referrer header etc... needed. 35 // referrer header etc... needed.
33 // 36 //
34 // If the calling application would like to request services from the target 37 // If the calling application would like to request services from the target
35 // application, it should pass a valid interface request in the |services| 38 // application, it should pass a valid interface request in the |services|
36 // parameter (i.e. one containing a valid message pipe endpoint). If the 39 // parameter (i.e. one containing a valid message pipe endpoint). If the
(...skipping 12 matching lines...) Expand all
49 // If the |application_url| does not contain a domain, but is of the form 52 // If the |application_url| does not contain a domain, but is of the form
50 // "mojo:{service}", it is up to the Mojo shell to select an appropriate 53 // "mojo:{service}", it is up to the Mojo shell to select an appropriate
51 // application for the service. Currently, the shell does this based on the 54 // application for the service. Currently, the shell does this based on the
52 // value of its --origin flag. 55 // value of its --origin flag.
53 // 56 //
54 // |filter| is a whitelist of application URLs and services that the target 57 // |filter| is a whitelist of application URLs and services that the target
55 // application is permitted to connect to. See documentation for 58 // application is permitted to connect to. See documentation for
56 // CapabilityFilter above. Note also that this parameter may be NULL, which 59 // CapabilityFilter above. Note also that this parameter may be NULL, which
57 // has the same meaning as allowing the target application to connect to 60 // has the same meaning as allowing the target application to connect to
58 // any application and service. 61 // any application and service.
62 //
63 // If the connection to |application_url| involves a content handler, then
64 // |content_handler_id| is the id of the deepest content handler used to
65 // establish the connection to |application_url|. If no content handler is
66 // used |content_handler_id| is kInvalidContentHandlerID.
67 // TODO(beng): determine if we need to expose the target application id also.
59 ConnectToApplication(URLRequest application_url, 68 ConnectToApplication(URLRequest application_url,
60 ServiceProvider&? services, 69 ServiceProvider&? services,
61 ServiceProvider? exposed_services, 70 ServiceProvider? exposed_services,
62 CapabilityFilter? filter); 71 CapabilityFilter? filter) => (uint32 content_handler_id);
63 72
64 // When there are no more instantiated services in an application, it should 73 // When there are no more instantiated services in an application, it should
65 // start its shutdown process by calling this method. Additionally, it should 74 // start its shutdown process by calling this method. Additionally, it should
66 // keep track of any new service requests that come in. The shell will then 75 // keep track of any new service requests that come in. The shell will then
67 // call Application::OnQuitRequested and start queueing new service requests. 76 // call Application::OnQuitRequested and start queueing new service requests.
68 // If the application didn't get any new service requests in the meantime, it 77 // If the application didn't get any new service requests in the meantime, it
69 // should call the callback with a true value. Otherwise it should call it 78 // should call the callback with a true value. Otherwise it should call it
70 // with false. 79 // with false.
71 QuitApplication(); 80 QuitApplication();
72 }; 81 };
OLDNEW
« no previous file with comments | « mojo/application/public/cpp/lib/service_registry.cc ('k') | mojo/runner/about_fetcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698