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

Unified Diff: ceee/common/install_utils_unittest.cc

Issue 5965012: Change "enable-ceee" to "ceee" to match the installer.... (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
« no previous file with comments | « ceee/common/install_utils.cc ('k') | ceee/ie/plugin/toolband/toolband_module.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ceee/common/install_utils_unittest.cc
===================================================================
--- ceee/common/install_utils_unittest.cc (revision 70265)
+++ ceee/common/install_utils_unittest.cc (working copy)
@@ -45,7 +45,7 @@
testing::MockKernel32 kernel32;
EXPECT_CALL(kernel32, GetCommandLine()).WillOnce(
Return(const_cast<wchar_t*>(
- L"mini_installer.exe --enable-ceee --chrome-frame")));
+ L"mini_installer.exe --ceee --chrome-frame")));
ASSERT_TRUE(ceee_install_utils::ShouldRegisterCeee());
}
@@ -53,7 +53,7 @@
testing::MockKernel32 kernel32;
EXPECT_CALL(kernel32, GetCommandLine()).Times(2).WillRepeatedly(
Return(const_cast<wchar_t*>(
- L"mini_installer.exe --enable-ceee --chrome-frame "
+ L"mini_installer.exe --ceee --chrome-frame "
L"--enable-ff-ceee")));
EXPECT_TRUE(ceee_install_utils::ShouldRegisterFfCeee());
// Check this as well just in case.
@@ -64,7 +64,7 @@
testing::MockKernel32 kernel32;
EXPECT_CALL(kernel32, GetCommandLine())
.WillOnce(Return(const_cast<wchar_t*>(
- L"mini_installer.exe --enable-ceee")))
+ L"mini_installer.exe --ceee")))
.WillOnce(Return(const_cast<wchar_t*>(
L"mini_installer.exe --chrome-frame")));
ASSERT_FALSE(ceee_install_utils::ShouldRegisterCeee());
@@ -75,11 +75,11 @@
testing::MockKernel32 kernel32;
EXPECT_CALL(kernel32, GetCommandLine())
.WillOnce(Return(const_cast<wchar_t*>(
- L"mini_installer.exe --enable-ceee --chrome-frame")))
+ L"mini_installer.exe --ceee --chrome-frame")))
.WillOnce(Return(const_cast<wchar_t*>(
L"mini_installer.exe --chrome-frame --enable-ff-ceee")))
.WillOnce(Return(const_cast<wchar_t*>(
- L"mini_installer.exe --enable-ceee --enable-ff-ceee")));
+ L"mini_installer.exe --ceee --enable-ff-ceee")));
ASSERT_FALSE(ceee_install_utils::ShouldRegisterFfCeee());
ASSERT_FALSE(ceee_install_utils::ShouldRegisterFfCeee());
ASSERT_FALSE(ceee_install_utils::ShouldRegisterFfCeee());
@@ -97,7 +97,7 @@
testing::MockKernel32 kernel32;
EXPECT_CALL(kernel32, GetCommandLine()).WillOnce(
Return(const_cast<wchar_t*>(
- L"mini_installer.exe --enable-ceee --noenable-ff-ceee "
+ L"mini_installer.exe --ceee --noenable-ff-ceee "
L"--chrome-frame")));
ASSERT_FALSE(ceee_install_utils::ShouldRegisterFfCeee());
}
@@ -114,7 +114,7 @@
testing::MockKernel32 kernel32;
EXPECT_CALL(kernel32, GetCommandLine()).WillOnce(
Return(const_cast<wchar_t*>(
- L"mini_installer.exe --enable-ceee --enable-ff-ceeez "
+ L"mini_installer.exe --ceee --enable-ff-ceeez "
L"--chrome-frame")));
ASSERT_FALSE(ceee_install_utils::ShouldRegisterFfCeee());
}
« no previous file with comments | « ceee/common/install_utils.cc ('k') | ceee/ie/plugin/toolband/toolband_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698