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

Unified Diff: runtime/bin/file_impl.dart

Issue 9487003: Fix type warning. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/file_impl.dart
diff --git a/runtime/bin/file_impl.dart b/runtime/bin/file_impl.dart
index a33e449b7b65b28ec8a3de22f404e389fb5522c1..f8929c80f4d62b76fc5fa13cea44ea28fc9875e0 100644
--- a/runtime/bin/file_impl.dart
+++ b/runtime/bin/file_impl.dart
@@ -95,7 +95,7 @@ class _FileInputStream extends _BaseDataInputStream implements InputStream {
class _FileOutputStream implements OutputStream {
- _FileOutputStream(String name, int mode) {
+ _FileOutputStream(String name, FileMode mode) {
_pendingOperations = new List<List<int>>();
var f = new File(name);
f.open(mode);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698