Merge pull request #1870 from abarth/rationalize_shell

Rationalize embedder.dart and shell.dart
This commit is contained in:
Adam Barth 2015-10-29 11:24:19 -07:00
commit b9a468eb24

View File

@ -23,7 +23,7 @@ const String kBundleFile = 'app.flx';
UpdateServiceProxy _initUpdateService() {
UpdateServiceProxy updateService = new UpdateServiceProxy.unbound();
shell.requestService(null, updateService);
shell.connectToService(null, updateService);
return updateService;
}