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

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

Issue 1686223002: Move InterfaceProvider into the shell::mojom namespace like the rest of the shell interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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.shell.mojom; 5 module mojo.shell.mojom;
6 6
7 import "mojo/shell/public/interfaces/interface_provider.mojom"; 7 import "mojo/shell/public/interfaces/interface_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
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(mojo.URLRequest application_url, 64 ConnectToApplication(mojo.URLRequest application_url,
65 mojo.InterfaceProvider&? remote_interfaces, 65 InterfaceProvider&? remote_interfaces,
66 mojo.InterfaceProvider? local_interfaces, 66 InterfaceProvider? local_interfaces,
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/interface_provider.mojom ('k') | mojo/shell/public/interfaces/shell_client.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698