Index: chrome/browser/ui/webui/settings/people_handler_unittest.cc |
diff --git a/chrome/browser/ui/webui/settings/people_handler_unittest.cc b/chrome/browser/ui/webui/settings/people_handler_unittest.cc |
index 0cf67013b8d5b3805cbb3064dc4665912c344229..b5b6ab2e26372a98834ed22e428bbfb906eb36ae 100644 |
--- a/chrome/browser/ui/webui/settings/people_handler_unittest.cc |
+++ b/chrome/browser/ui/webui/settings/people_handler_unittest.cc |
@@ -318,7 +318,8 @@ TEST_F(PeopleHandlerFirstSigninTest, DisplayBasicLogin) { |
SigninManager* manager = static_cast<SigninManager*>(mock_signin_); |
manager->SignOut(signin_metrics::SIGNOUT_TEST, |
signin_metrics::SignoutDelete::IGNORE_METRIC); |
- handler_->HandleStartSignin(NULL); |
+ base::ListValue list_args; |
+ handler_->HandleStartSignin(&list_args); |
// Sync setup hands off control to the gaia login tab. |
EXPECT_EQ(NULL, |
@@ -396,7 +397,7 @@ TEST_F(PeopleHandlerTest, |
EXPECT_CALL(*mock_pss_, IsBackendInitialized()).WillRepeatedly(Return(false)); |
SetDefaultExpectationsForConfigPage(); |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
// We expect a call to settings.SyncPrivateApi.showSyncSetupPage. |
EXPECT_EQ(1U, web_ui_.call_data().size()); |
@@ -444,7 +445,7 @@ TEST_F(PeopleHandlerTest, |
.WillOnce(Return(false)) |
.WillRepeatedly(Return(true)); |
SetDefaultExpectationsForConfigPage(); |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
// It's important to tell sync the user cancelled the setup flow before we |
// tell it we're through with the setup progress. |
@@ -465,7 +466,7 @@ TEST_F(PeopleHandlerTest, |
error_ = GoogleServiceAuthError::AuthErrorNone(); |
EXPECT_CALL(*mock_pss_, IsBackendInitialized()).WillRepeatedly(Return(false)); |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
const content::TestWebUI::CallData& data = *web_ui_.call_data()[0]; |
EXPECT_EQ("settings.SyncPrivateApi.showSyncSetupPage", data.function_name()); |
std::string page; |
@@ -496,7 +497,7 @@ TEST_F(PeopleHandlerNonCrosTest, HandleGaiaAuthFailure) { |
.WillRepeatedly(Return(false)); |
EXPECT_CALL(*mock_pss_, IsFirstSetupComplete()).WillRepeatedly(Return(false)); |
// Open the web UI. |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
ASSERT_FALSE(handler_->is_configuring_sync()); |
} |
@@ -506,7 +507,7 @@ TEST_F(PeopleHandlerNonCrosTest, UnrecoverableErrorInitializingSync) { |
EXPECT_CALL(*mock_pss_, CanSyncStart()).WillRepeatedly(Return(false)); |
EXPECT_CALL(*mock_pss_, IsFirstSetupComplete()).WillRepeatedly(Return(false)); |
// Open the web UI. |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
ASSERT_FALSE(handler_->is_configuring_sync()); |
} |
@@ -515,7 +516,7 @@ TEST_F(PeopleHandlerNonCrosTest, GaiaErrorInitializingSync) { |
EXPECT_CALL(*mock_pss_, CanSyncStart()).WillRepeatedly(Return(false)); |
EXPECT_CALL(*mock_pss_, IsFirstSetupComplete()).WillRepeatedly(Return(false)); |
// Open the web UI. |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
ASSERT_FALSE(handler_->is_configuring_sync()); |
} |
@@ -744,7 +745,7 @@ TEST_F(PeopleHandlerTest, ShowSyncSetup) { |
SetupInitializedProfileSyncService(); |
// This should display the sync setup dialog (not login). |
SetDefaultExpectationsForConfigPage(); |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
ExpectConfig(); |
} |
@@ -779,7 +780,7 @@ TEST_F(PeopleHandlerTest, ShowSigninOnAuthError) { |
// On ChromeOS, this should display the spinner while we try to startup the |
// sync backend, and on desktop this displays the login dialog. |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
// Sync setup is closed when re-auth is in progress. |
EXPECT_EQ(NULL, |
@@ -798,7 +799,7 @@ TEST_F(PeopleHandlerTest, ShowSetupSyncEverything) { |
SetupInitializedProfileSyncService(); |
SetDefaultExpectationsForConfigPage(); |
// This should display the sync setup dialog (not login). |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
ExpectConfig(); |
const content::TestWebUI::CallData& data = *web_ui_.call_data()[0]; |
@@ -832,7 +833,7 @@ TEST_F(PeopleHandlerTest, ShowSetupManuallySyncAll) { |
sync_prefs.SetKeepEverythingSynced(false); |
SetDefaultExpectationsForConfigPage(); |
// This should display the sync setup dialog (not login). |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
ExpectConfig(); |
const content::TestWebUI::CallData& data = *web_ui_.call_data()[0]; |
@@ -859,7 +860,7 @@ TEST_F(PeopleHandlerTest, ShowSetupSyncForAllTypesIndividually) { |
WillRepeatedly(Return(types)); |
// This should display the sync setup dialog (not login). |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
ExpectConfig(); |
// Close the config overlay. |
@@ -884,7 +885,7 @@ TEST_F(PeopleHandlerTest, ShowSetupGaiaPassphraseRequired) { |
SetDefaultExpectationsForConfigPage(); |
// This should display the sync setup dialog (not login). |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
ExpectConfig(); |
const content::TestWebUI::CallData& data = *web_ui_.call_data()[0]; |
@@ -906,7 +907,7 @@ TEST_F(PeopleHandlerTest, ShowSetupCustomPassphraseRequired) { |
SetDefaultExpectationsForConfigPage(); |
// This should display the sync setup dialog (not login). |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
ExpectConfig(); |
const content::TestWebUI::CallData& data = *web_ui_.call_data()[0]; |
@@ -928,7 +929,7 @@ TEST_F(PeopleHandlerTest, ShowSetupEncryptAll) { |
.WillRepeatedly(Return(true)); |
// This should display the sync setup dialog (not login). |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
ExpectConfig(); |
const content::TestWebUI::CallData& data = *web_ui_.call_data()[0]; |
@@ -948,7 +949,7 @@ TEST_F(PeopleHandlerTest, ShowSetupEncryptAllDisallowed) { |
.WillRepeatedly(Return(false)); |
// This should display the sync setup dialog (not login). |
- handler_->OpenSyncSetup(nullptr); |
+ handler_->OpenSyncSetup(false /* creating_supervised_user */); |
ExpectConfig(); |
const content::TestWebUI::CallData& data = *web_ui_.call_data()[0]; |