| Index: chrome/browser/chromeos/profiles/profile_helper_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/profiles/profile_helper_browsertest.cc b/chrome/browser/chromeos/profiles/profile_helper_browsertest.cc
|
| index e891fc37ca9e206fd1be7e1ebd85e5e039366915..b443ebe5d6021dc68de681928a4c2feeaf8b2a8c 100644
|
| --- a/chrome/browser/chromeos/profiles/profile_helper_browsertest.cc
|
| +++ b/chrome/browser/chromeos/profiles/profile_helper_browsertest.cc
|
| @@ -23,25 +23,19 @@ static const char kActiveUserHash[] = "01234567890";
|
|
|
| // The boolean parameter, retrieved by GetParam(), is true if testing with
|
| // multi-profiles enabled.
|
| -class ProfileHelperTest : public InProcessBrowserTest,
|
| - public testing::WithParamInterface<bool> {
|
| +class ProfileHelperTest : public InProcessBrowserTest {
|
| public:
|
| ProfileHelperTest() {
|
| }
|
|
|
| protected:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
|
| - if (GetParam())
|
| - command_line->AppendSwitch(::switches::kMultiProfiles);
|
| - }
|
| -
|
| void ActiveUserChanged(ProfileHelper* profile_helper,
|
| const std::string& hash) {
|
| profile_helper->ActiveUserHashChanged(hash);
|
| }
|
| };
|
|
|
| -IN_PROC_BROWSER_TEST_P(ProfileHelperTest, ActiveUserProfileDir) {
|
| +IN_PROC_BROWSER_TEST_F(ProfileHelperTest, ActiveUserProfileDir) {
|
| ProfileHelper profile_helper;
|
| ActiveUserChanged(&profile_helper, kActiveUserHash);
|
| base::FilePath profile_dir = profile_helper.GetActiveUserProfileDir();
|
| @@ -51,7 +45,7 @@ IN_PROC_BROWSER_TEST_P(ProfileHelperTest, ActiveUserProfileDir) {
|
| EXPECT_EQ(expected_dir, profile_dir.BaseName().value());
|
| }
|
|
|
| -IN_PROC_BROWSER_TEST_P(ProfileHelperTest,
|
| +IN_PROC_BROWSER_TEST_F(ProfileHelperTest,
|
| GetProfileDirByLegacyLoginProfileSwitch) {
|
| CommandLine::ForCurrentProcess()->
|
| AppendSwitchASCII(chromeos::switches::kLoginProfile,
|
| @@ -70,7 +64,7 @@ IN_PROC_BROWSER_TEST_P(ProfileHelperTest,
|
| ProfileHelper::GetProfileDirByLegacyLoginProfileSwitch().value());
|
| }
|
|
|
| -IN_PROC_BROWSER_TEST_P(ProfileHelperTest, GetProfilePathByUserIdHash) {
|
| +IN_PROC_BROWSER_TEST_F(ProfileHelperTest, GetProfilePathByUserIdHash) {
|
| ProfileHelper profile_helper;
|
| base::FilePath profile_path =
|
| profile_helper.GetProfilePathByUserIdHash(kActiveUserHash);
|
| @@ -80,8 +74,4 @@ IN_PROC_BROWSER_TEST_P(ProfileHelperTest, GetProfilePathByUserIdHash) {
|
| EXPECT_EQ(expected_path, profile_path);
|
| }
|
|
|
| -INSTANTIATE_TEST_CASE_P(ProfileHelperTestInstantiation,
|
| - ProfileHelperTest,
|
| - testing::Bool());
|
| -
|
| } // namespace chromeos
|
|
|