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

Unified Diff: mojo/public/dart/src/application.dart

Issue 919883002: Allow sky apps to be consumers of mojo services (Closed) Base URL: https://github.com/eseidel/skydart.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | sky/engine/bindings2/BUILD.gn » ('j') | sky/engine/bindings2/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/dart/src/application.dart
diff --git a/mojo/public/dart/src/application.dart b/mojo/public/dart/src/application.dart
index 2819625a30c74782a1ae52e3344e67c08d60674a..f1eae0030709d1e39537561359ff8a026e576127 100644
--- a/mojo/public/dart/src/application.dart
+++ b/mojo/public/dart/src/application.dart
@@ -68,6 +68,10 @@ abstract class Application {
_applicationImpl = new _ApplicationImpl.fromHandle(this, appHandle);
}
+ void initializeFromShellProxy(shell_mojom.ShellProxy shellProxy, List<String> args) {
rafaelw 2015/02/12 00:58:00 Zach: This was necessary because we need to do som
zra 2015/02/12 04:01:45 Please fix the long line. 80 char max for Dart cod
rafaelw 2015/02/12 18:54:55 Done.
+ _applicationImpl.initialize(shellProxy, args);
+ }
+
void initialize(List<String> args) {}
void connectToService(String url, bindings.Proxy proxy) {
« no previous file with comments | « no previous file | sky/engine/bindings2/BUILD.gn » ('j') | sky/engine/bindings2/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698