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

Unified Diff: chrome/installer/setup/setup_util_unittest.cc

Issue 100543005: Update all users of base::Version to explicitly specify the namespace, and clean up the header. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: someday it will work Created 7 years 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 | « chrome/installer/setup/setup_util.cc ('k') | chrome/installer/setup/uninstall.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/setup/setup_util_unittest.cc
diff --git a/chrome/installer/setup/setup_util_unittest.cc b/chrome/installer/setup/setup_util_unittest.cc
index c08e2b77afc1c9f7dd8a31e9bf486ecf18a75f5d..a4e972f84f16810a59431cd5fecee9ff5bb53ce8 100644
--- a/chrome/installer/setup/setup_util_unittest.cc
+++ b/chrome/installer/setup/setup_util_unittest.cc
@@ -102,7 +102,7 @@ TEST_F(SetupUtilTestWithDir, GetMaxVersionFromArchiveDirTest) {
base::FilePath chrome_dir = test_dir_.path().AppendASCII("1.0.0.0");
base::CreateDirectory(chrome_dir);
ASSERT_TRUE(base::PathExists(chrome_dir));
- scoped_ptr<Version> version(
+ scoped_ptr<base::Version> version(
installer::GetMaxVersionFromArchiveDir(test_dir_.path()));
ASSERT_EQ(version->GetString(), "1.0.0.0");
@@ -275,9 +275,9 @@ class FindArchiveToPatchTest : public SetupUtilTestWithDir {
return static_cast<FakeProductState*>(const_cast<ProductState*>(product));
}
- void set_version(const Version& version) {
+ void set_version(const base::Version& version) {
if (version.IsValid())
- version_.reset(new Version(version));
+ version_.reset(new base::Version(version));
else
version_.reset();
}
@@ -289,8 +289,8 @@ class FindArchiveToPatchTest : public SetupUtilTestWithDir {
virtual void SetUp() OVERRIDE {
SetupUtilTestWithDir::SetUp();
- product_version_ = Version("30.0.1559.0");
- max_version_ = Version("47.0.1559.0");
+ product_version_ = base::Version("30.0.1559.0");
+ max_version_ = base::Version("47.0.1559.0");
// Install the product according to the version.
original_state_.reset(new FakeInstallationState());
@@ -318,7 +318,7 @@ class FindArchiveToPatchTest : public SetupUtilTestWithDir {
SetupUtilTestWithDir::TearDown();
}
- base::FilePath GetArchivePath(const Version& version) const {
+ base::FilePath GetArchivePath(const base::Version& version) const {
return test_dir_.path()
.AppendASCII(version.GetString())
.Append(installer::kInstallerDir)
@@ -351,13 +351,13 @@ class FindArchiveToPatchTest : public SetupUtilTestWithDir {
FakeProductState::FromProductState(
original_state_->GetNonVersionedProductState(kSystemInstall_,
kProductType_))
- ->set_version(Version());
+ ->set_version(base::Version());
}
static const bool kSystemInstall_;
static const BrowserDistribution::Type kProductType_;
- Version product_version_;
- Version max_version_;
+ base::Version product_version_;
+ base::Version max_version_;
scoped_ptr<FakeInstallationState> original_state_;
scoped_ptr<installer::InstallerState> installer_state_;
};
« no previous file with comments | « chrome/installer/setup/setup_util.cc ('k') | chrome/installer/setup/uninstall.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698