| Index: chrome/browser/sync/test/integration/sync_app_list_helper.cc
|
| diff --git a/chrome/browser/sync/test/integration/sync_app_list_helper.cc b/chrome/browser/sync/test/integration/sync_app_list_helper.cc
|
| index b2bd97850b3a0a9ad087d3706b77635aff817653..5751c0aa6af97da9b6233a45edb06d0e4f421295 100644
|
| --- a/chrome/browser/sync/test/integration/sync_app_list_helper.cc
|
| +++ b/chrome/browser/sync/test/integration/sync_app_list_helper.cc
|
| @@ -54,13 +54,8 @@ bool SyncAppListHelper::AppListMatchesVerifier(Profile* profile) {
|
| AppListSyncableServiceFactory::GetForProfile(profile);
|
| AppListSyncableService* verifier =
|
| AppListSyncableServiceFactory::GetForProfile(test_->verifier());
|
| - if (service->GetNumSyncItemsForTest() !=
|
| - verifier->GetNumSyncItemsForTest()) {
|
| - LOG(ERROR) << "Sync item count: "
|
| - << service->GetNumSyncItemsForTest()
|
| - << " != " << verifier->GetNumSyncItemsForTest();
|
| - return false;
|
| - }
|
| + // Note: sync item entries may not exist in verifier, but item lists should
|
| + // match.
|
| if (service->model()->item_list()->item_count() !=
|
| verifier->model()->item_list()->item_count()) {
|
| LOG(ERROR) << "Model item count: "
|
|
|