Index: runtime/bin/process_patch.dart |
diff --git a/runtime/bin/process_patch.dart b/runtime/bin/process_patch.dart |
index a4bd45135993bca68f99b1a1f6c682e10fe2702a..b0dc7604bd9ae0d9d175d0cacab27e215d9f7463 100644 |
--- a/runtime/bin/process_patch.dart |
+++ b/runtime/bin/process_patch.dart |
@@ -392,6 +392,7 @@ class _ProcessImpl extends _ProcessImplNativeWrapper implements Process { |
Timer.run(() { |
var status = new _ProcessStartStatus(); |
bool success = _startNative( |
+ _Namespace._namespace, |
_path, |
_arguments, |
_workingDirectory, |
@@ -457,6 +458,7 @@ class _ProcessImpl extends _ProcessImplNativeWrapper implements Process { |
var status = new _ProcessStartStatus(); |
_exitCode = new Completer<int>(); |
bool success = _startNative( |
+ _Namespace._namespace, |
_path, |
_arguments, |
_workingDirectory, |
@@ -495,6 +497,7 @@ class _ProcessImpl extends _ProcessImplNativeWrapper implements Process { |
} |
bool _startNative( |
+ _Namespace namespace, |
String path, |
List<String> arguments, |
String workingDirectory, |