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

Unified Diff: runtime/bin/file.dart

Issue 9111009: Fix wrong return type on fullPath in File API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typoe Created 8 years, 12 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.dart
diff --git a/runtime/bin/file.dart b/runtime/bin/file.dart
index 4fd8bbbfcd26655c4af433a1a671a99b4c4bcdbb..a05136b8c5253876b6e4fbe15ea17d5f6f9113c5 100644
--- a/runtime/bin/file.dart
+++ b/runtime/bin/file.dart
@@ -106,10 +106,10 @@ interface File default _File {
/**
* Get the canonical full path corresponding to the file name. The
- * [fullPathHandler] is called when the fullPath operation
- * completes.
+ * [fullPathHandler] is called with the result when the fullPath
+ * operation completes.
*/
- String fullPath();
+ void fullPath();
/**
* Synchronously get the canonical full path corresponding to the file name.
« 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