diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-11 18:40:53 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-11 18:40:53 +0000 |
commit | 12126d37c6fafd799821164a00bf1fdd240b9ec3 (patch) | |
tree | 8a029e133da6d9ad82265b03dc930045b3ffd046 /base/version.h | |
parent | 26807c6123b72a2ab30ff3fb2d5ab1e154fc3585 (diff) | |
download | chromium_src-12126d37c6fafd799821164a00bf1fdd240b9ec3.zip chromium_src-12126d37c6fafd799821164a00bf1fdd240b9ec3.tar.gz chromium_src-12126d37c6fafd799821164a00bf1fdd240b9ec3.tar.bz2 |
Remove two deprecated methods from base::Version
BUG=none
TEST=none
TBR=sky@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10683005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146157 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/version.h')
-rw-r--r-- | base/version.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/base/version.h b/base/version.h index 8d45899..ccb4f1f 100644 --- a/base/version.h +++ b/base/version.h @@ -42,15 +42,6 @@ class BASE_EXPORT Version { // than the version of this object. bool IsOlderThan(const std::string& version_str) const; - // Returns NULL if the string is not in the proper format. - // Caller is responsible for freeing the Version object once done. - // DO NOT USE FOR NEWER CODE. - static Version* GetVersionFromString(const std::string& version_str); - - // Creates a copy of this version object. Caller takes ownership. - // DO NOT USE FOR NEWER CODE. - Version* Clone() const; - bool Equals(const Version& other) const; // Returns -1, 0, 1 for <, ==, >. |