Chromium Code Reviews| Index: mojo/public/dart/src/application.dart |
| diff --git a/mojo/public/dart/src/application.dart b/mojo/public/dart/src/application.dart |
| index 846bac18da9813852fddd24085ad3ad67484a137..87e51c9156dd486ba581016991892cb7c4981880 100644 |
| --- a/mojo/public/dart/src/application.dart |
| +++ b/mojo/public/dart/src/application.dart |
| @@ -88,6 +88,13 @@ abstract class Application { |
| void initialize(List<String> args, String url) {} |
| + // TODO(skydart): This is a temporary fix to allow sky application to consume |
| + // mojo services. Do not use for any other purpose. |
|
zra
2015/02/13 07:14:23
thanks for adding this.
|
| + void initializeFromShellProxy(shell_mojom.ShellProxy shellProxy, |
| + List<String> args, String url) { |
| + _applicationImpl.initialize(shellProxy, args, url); |
| + } |
| + |
| // Establishes a connection to the app at |url|. |
| ApplicationConnection connectToApplication(String url) { |
| var serviceProviderProxy = |