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

Unified Diff: mojo/services/public/js/shell.js

Issue 837283002: Mojo JS Bindings: merge Application, Shell, ServiceProvider with Sky (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: mojo/services/public/js/shell.js
diff --git a/mojo/services/public/js/shell.js b/mojo/services/public/js/shell.js
index 338de5ee58a02c4a5a04cc2bd0ead20b87c40c51..8d90dcb2f579a61171cd1afb2bb61b9830010799 100644
--- a/mojo/services/public/js/shell.js
+++ b/mojo/services/public/js/shell.js
@@ -9,17 +9,12 @@ define("mojo/services/public/js/shell", [
"mojo/public/interfaces/application/shell.mojom",
"mojo/public/interfaces/application/service_provider.mojom",
"mojo/services/public/js/service_provider",
-], function(bindings,
- core,
- connection,
- shellMojom,
- serviceProviderMojom,
- serviceProvider) {
+], function(bindings, core, connection, shellMojom, spMojom, sp) {
const ProxyBindings = bindings.ProxyBindings;
const StubBindings = bindings.StubBindings;
- const ServiceProvider = serviceProvider.ServiceProvider;
- const ServiceProviderInterface = serviceProviderMojom.ServiceProvider;
+ const ServiceProvider = sp.ServiceProvider;
+ const ServiceProviderInterface = spMojom.ServiceProvider;
const ShellInterface = shellMojom.Shell;
class Shell {

Powered by Google App Engine
This is Rietveld 408576698