Chromium Code Reviews| Index: tools/testing/dart/version.dart |
| =================================================================== |
| --- tools/testing/dart/version.dart (revision 13524) |
| +++ tools/testing/dart/version.dart (working copy) |
| @@ -35,7 +35,9 @@ |
| int BUILD; |
| int PATCH; |
| - Version(String this._versionFileName); |
| + Version(Path versionFile) { |
| + _versionFileName = versionFile.toNativePath(); |
| + } |
| /** |
| * Get the version number for this specific build using the version info |