Chromium Code Reviews| Index: runtime/bin/directory.dart |
| diff --git a/runtime/bin/directory.dart b/runtime/bin/directory.dart |
| index d51033f48563c175ec76a8f4d60858ac206d8ae1..a99de599780586b247cd411dc007b0bf68f39933 100644 |
| --- a/runtime/bin/directory.dart |
| +++ b/runtime/bin/directory.dart |
| @@ -45,22 +45,21 @@ interface Directory factory _Directory { |
| void set dirHandler(void dirHandler(String dir)); |
| /** |
| - * Sets the file handler that is called for all files during listing |
| + * Sets the handler that is called for all files during listing |
| * operations. The file handler is called with the full path of the |
| * file. |
| */ |
| void set fileHandler(void fileHandler(String file)); |
| /** |
| - * Set the done handler that is called when a directory listing is |
| + * Set the handler that is called when a directory listing is |
| * done. The handler is called with an indication of whether or not |
| * the listing operation completed. |
| */ |
|
Bill Hesse
2011/11/08 09:35:39
Maybe we can leave the argument as a bool, if we a
|
| void set doneHandler(void doneHandler(bool completed)); |
| /** |
| - * Sets the error handler that is called on error listing |
| - * directories. |
| + * Sets the handler that is called on error listing directories. |
| */ |
| void set errorHandler(void errorHandler(String error)); |