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

Unified Diff: runtime/bin/process_impl.dart

Issue 10990055: Hide VM-only coreimpl List implementation types. These should not be (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x64 as well, sigh. Created 8 years, 3 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_impl.dart
diff --git a/runtime/bin/process_impl.dart b/runtime/bin/process_impl.dart
index cb11083c723b54788c2af81619f75fbd91a7406d..47ccd8d8ff386aad0014c91a082ef125a392ca57 100644
--- a/runtime/bin/process_impl.dart
+++ b/runtime/bin/process_impl.dart
@@ -29,7 +29,7 @@ class _Process extends NativeFieldWrapperClass1 implements Process {
throw new ArgumentError("Arguments is not a List: $arguments");
}
int len = arguments.length;
- _arguments = new ObjectArray<String>(len);
+ _arguments = new List<String>(len);
for (int i = 0; i < len; i++) {
var arg = arguments[i];
if (arg is !String) {
@@ -282,7 +282,7 @@ class _Process extends NativeFieldWrapperClass1 implements Process {
}
String _path;
- ObjectArray<String> _arguments;
+ List<String> _arguments;
String _workingDirectory;
List<String> _environment;
// Private methods of _Socket are used by _in, _out, and _err.

Powered by Google App Engine
This is Rietveld 408576698