summaryrefslogtreecommitdiffstats
path: root/mojo/shell/tests/lifecycle/lifecycle_unittest.mojom
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/shell/tests/lifecycle/lifecycle_unittest.mojom')
-rw-r--r--mojo/shell/tests/lifecycle/lifecycle_unittest.mojom9
1 files changed, 9 insertions, 0 deletions
diff --git a/mojo/shell/tests/lifecycle/lifecycle_unittest.mojom b/mojo/shell/tests/lifecycle/lifecycle_unittest.mojom
index 1ae54e8..2197e3b 100644
--- a/mojo/shell/tests/lifecycle/lifecycle_unittest.mojom
+++ b/mojo/shell/tests/lifecycle/lifecycle_unittest.mojom
@@ -21,3 +21,12 @@ interface LifecycleControl {
// longer tracking this application.
CloseShellConnection();
};
+
+// Implemented by an app that connects to another app, thereby creating an
+// instance for it in the shell.
+interface Parent {
+ // Connects to another app and runs the callback when that app has acked a
+ // Ping.
+ ConnectToChild() => ();
+ Quit();
+};