[go: nahoru, domu]

Skip to content

Commit

Permalink
Merge pull request #321 from alhaad/fix_service_registry_handle
Browse files Browse the repository at this point in the history
service_registry.dart should use the service registry handle instead of shell handle
  • Loading branch information
abarth committed Nov 12, 2015
2 parents fe3175d + d0cfff1 commit 8a256ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/flutter/lib/src/services/service_registry.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'package:mojo_services/mojo/service_registry.mojom.dart';
import 'package:mojo/core.dart' as core;

ServiceRegistryProxy _initServiceRegistryProxy() {
core.MojoHandle serviceRegistryHandle = new core.MojoHandle(internals.takeShellProxyHandle());
core.MojoHandle serviceRegistryHandle = new core.MojoHandle(internals.takeServiceRegistry());
if (!serviceRegistryHandle.isValid)
return null;
return new ServiceRegistryProxy.fromHandle(serviceRegistryHandle);
Expand Down

0 comments on commit 8a256ab

Please sign in to comment.