Index: base/version.cc |
=================================================================== |
--- base/version.cc (revision 94719) |
+++ base/version.cc (working copy) |
@@ -45,6 +45,13 @@ |
return (!components_.empty()); |
} |
+bool Version::IsOlderThan(const std::string& version_str) const { |
+ Version proposed_ver(version_str); |
+ if (!proposed_ver.IsValid()) |
+ return false; |
+ return (CompareTo(proposed_ver) < 0); |
+} |
+ |
// TODO(cpu): remove this method. |
Version* Version::GetVersionFromString(const std::string& version_str) { |
Version* vers = new Version(version_str); |