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

Unified Diff: mojo/application/public/interfaces/shell.mojom

Issue 1474563002: Make CapabilityFilter non-nullable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/application/public/cpp/lib/application_impl.cc ('k') | ui/views/mus/surface_binding.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/application/public/interfaces/shell.mojom
diff --git a/mojo/application/public/interfaces/shell.mojom b/mojo/application/public/interfaces/shell.mojom
index acec2c6d93c3645053477bdbf75a9d233ae45a0a..e38f93c7fd83c8e8739d9c91d2f1e3b84fe4f007 100644
--- a/mojo/application/public/interfaces/shell.mojom
+++ b/mojo/application/public/interfaces/shell.mojom
@@ -56,9 +56,7 @@ interface Shell {
//
// |filter| is a whitelist of application URLs and services that the target
// application is permitted to connect to. See documentation for
- // CapabilityFilter above. Note also that this parameter may be NULL, which
- // has the same meaning as allowing the target application to connect to
- // any application and service.
+ // CapabilityFilter above.
//
// If the connection to |application_url| involves a content handler, then
// |content_handler_id| is the id of the deepest content handler used to
@@ -68,7 +66,7 @@ interface Shell {
ConnectToApplication(URLRequest application_url,
ServiceProvider&? services,
ServiceProvider? exposed_services,
- CapabilityFilter? filter) => (uint32 content_handler_id);
+ CapabilityFilter filter) => (uint32 content_handler_id);
// When there are no more instantiated services in an application, it should
// start its shutdown process by calling this method. Additionally, it should
« no previous file with comments | « mojo/application/public/cpp/lib/application_impl.cc ('k') | ui/views/mus/surface_binding.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698