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

Side by Side Diff: services/ui/launcher/launcher.mojom

Issue 2003003002: Update launcher API. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Rebasing Created 4 years, 7 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 launcher; 5 module launcher;
6 6
7 import "mojo/services/native_viewport/interfaces/native_viewport.mojom";
8 import "mojo/services/ui/views/interfaces/view_provider.mojom";
9
7 // Private interface for the shell. Allows the shell to start an ui 10 // Private interface for the shell. Allows the shell to start an ui
8 // application. 11 // application.
9 [ServiceName="launcher::Launcher"] 12 [ServiceName="launcher::Launcher"]
10 interface Launcher { 13 interface Launcher {
11 Launch(string application_url); 14 Launch(string application_url);
15 LaunchOnViewport(mojo.NativeViewport viewport,
ppi 2016/05/30 09:21:00 Should we annotate this method with a comment alon
qsr 2016/05/30 09:37:57 Done.
16 mojo.ui.ViewProvider view_provider);
12 }; 17 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698