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

Unified Diff: tools/testing/dart/version.dart

Issue 11098066: Fix path handling in tools/version.dart so that it does not matter where we call this from. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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 | tools/version.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | tools/version.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698