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

Unified Diff: runtime/bin/process_patch.dart

Issue 3007703002: [dart:io] Namespaces for file IO (Closed)
Patch Set: Created 3 years, 4 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
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,

Powered by Google App Engine
This is Rietveld 408576698