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

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

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 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/shell/public/interfaces/service_provider.mojom";
8 import "mojo/application/public/interfaces/shell.mojom"; 8 import "mojo/shell/public/interfaces/shell.mojom";
9 9
10 // This is the primary interface implemented by every Mojo application. It 10 // This is the primary interface implemented by every Mojo application. It
11 // allows the application to receive its startup arguments from the shell, and 11 // allows the application to receive its startup arguments from the shell, and
12 // to be notified of events that occur during its execution. 12 // to be notified of events that occur during its execution.
13 // 13 //
14 // TODO(aa): It would be good to reorder the parameters once we have interface 14 // TODO(aa): It would be good to reorder the parameters once we have interface
15 // versioning. 15 // versioning.
16 interface Application { 16 interface Application {
17 // Initializes the application with the specified arguments. This method is 17 // Initializes the application with the specified arguments. This method is
18 // guaranteed to be called before any other method is called, and will only be 18 // guaranteed to be called before any other method is called, and will only be
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 ServiceProvider&? services, 61 ServiceProvider&? services,
62 ServiceProvider? exposed_services, 62 ServiceProvider? exposed_services,
63 array<string> allowed_interfaces, 63 array<string> allowed_interfaces,
64 string resolved_url); 64 string resolved_url);
65 65
66 // Called by the shell in response to calling Shell's QuitApplication. The 66 // Called by the shell in response to calling Shell's QuitApplication. The
67 // application should run the callback with true if shutdown can proceed. 67 // application should run the callback with true if shutdown can proceed.
68 // See Shell::QuitApplication for details about shutdown workflow. 68 // See Shell::QuitApplication for details about shutdown workflow.
69 OnQuitRequested() => (bool can_quit); 69 OnQuitRequested() => (bool can_quit);
70 }; 70 };
OLDNEW
« no previous file with comments | « mojo/shell/public/interfaces/BUILD.gn ('k') | mojo/shell/public/interfaces/application_manager.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698