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

Unified Diff: runtime/bin/file_patch.dart

Issue 12314153: dart:io | Rename File.name to File.path. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove stray line break. Created 7 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
Index: runtime/bin/file_patch.dart
diff --git a/runtime/bin/file_patch.dart b/runtime/bin/file_patch.dart
index eb55dae6abff5553267bfadbb1f0f17f5442619f..63cb9157e4019ad4c3f45b5fb1f4cc1233da4f9b 100644
--- a/runtime/bin/file_patch.dart
+++ b/runtime/bin/file_patch.dart
@@ -7,15 +7,15 @@ patch class _FileUtils {
}
patch class _File {
- /* patch */ static _exists(String name) native "File_Exists";
- /* patch */ static _create(String name) native "File_Create";
- /* patch */ static _delete(String name) native "File_Delete";
- /* patch */ static _directory(String name) native "File_Directory";
- /* patch */ static _lengthFromName(String name) native "File_LengthFromName";
- /* patch */ static _lastModified(String name) native "File_LastModified";
- /* patch */ static _open(String name, int mode) native "File_Open";
+ /* patch */ static _exists(String path) native "File_Exists";
+ /* patch */ static _create(String path) native "File_Create";
+ /* patch */ static _delete(String path) native "File_Delete";
+ /* patch */ static _directory(String path) native "File_Directory";
+ /* patch */ static _lengthFromPath(String path) native "File_LengthFromPath";
+ /* patch */ static _lastModified(String path) native "File_LastModified";
+ /* patch */ static _open(String path, int mode) native "File_Open";
/* patch */ static int _openStdio(int fd) native "File_OpenStdio";
- /* patch */ static _fullPath(String name) native "File_FullPath";
+ /* patch */ static _fullPath(String path) native "File_FullPath";
}
patch class _RandomAccessFile {

Powered by Google App Engine
This is Rietveld 408576698