| 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 3182ce3ff37e3821afe8a9544996bd2846220bcd..6d7d0caa20e02a7031b57087123dbf927975afa9 100644
|
| --- a/chrome/browser/ui/webui/settings/people_handler_unittest.cc
|
| +++ b/chrome/browser/ui/webui/settings/people_handler_unittest.cc
|
| @@ -96,6 +96,7 @@ std::string GetConfiguration(const base::DictionaryValue* extra_values,
|
| result.SetBoolean("tabsSynced", types.Has(syncer::PROXY_TABS));
|
| result.SetBoolean("themesSynced", types.Has(syncer::THEMES));
|
| result.SetBoolean("typedUrlsSynced", types.Has(syncer::TYPED_URLS));
|
| + result.SetBoolean("paymentsIntegrationEnabled", false);
|
| std::string args;
|
| base::JSONWriter::Write(result, &args);
|
| return args;
|
| @@ -768,6 +769,7 @@ TEST_F(PeopleHandlerTest, ShowSetupSyncEverything) {
|
| CheckBool(dictionary, "tabsRegistered", true);
|
| CheckBool(dictionary, "themesRegistered", true);
|
| CheckBool(dictionary, "typedUrlsRegistered", true);
|
| + CheckBool(dictionary, "paymentsIntegrationEnabled", true);
|
| CheckBool(dictionary, "passphraseRequired", false);
|
| CheckBool(dictionary, "passphraseTypeIsCustom", false);
|
| CheckBool(dictionary, "encryptAllData", false);
|
|
|