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

Unified Diff: chrome/installer/util/channel_info_unittest.cc

Issue 5729004: Merge the installer, installer_util and setup_util namespaces into a single i... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 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
Index: chrome/installer/util/channel_info_unittest.cc
===================================================================
--- chrome/installer/util/channel_info_unittest.cc (revision 68996)
+++ chrome/installer/util/channel_info_unittest.cc (working copy)
@@ -14,7 +14,7 @@
} // namespace
TEST(ChannelInfoTest, Channels) {
- installer_util::ChannelInfo ci;
+ installer::ChannelInfo ci;
std::wstring channel;
ci.set_value(L"");
@@ -55,7 +55,7 @@
}
TEST(ChannelInfoTest, CEEE) {
- installer_util::ChannelInfo ci;
+ installer::ChannelInfo ci;
ci.set_value(L"");
EXPECT_TRUE(ci.SetCeee(true));
@@ -87,7 +87,7 @@
}
TEST(ChannelInfoTest, FullInstall) {
- installer_util::ChannelInfo ci;
+ installer::ChannelInfo ci;
ci.set_value(L"");
EXPECT_TRUE(ci.SetFullInstall(true));
@@ -119,7 +119,7 @@
}
TEST(ChannelInfoTest, MultiInstall) {
- installer_util::ChannelInfo ci;
+ installer::ChannelInfo ci;
ci.set_value(L"");
EXPECT_TRUE(ci.SetMultiInstall(true));

Powered by Google App Engine
This is Rietveld 408576698