| Index: chrome/browser/sync/test/integration/two_client_app_list_sync_test.cc
|
| diff --git a/chrome/browser/sync/test/integration/two_client_app_list_sync_test.cc b/chrome/browser/sync/test/integration/two_client_app_list_sync_test.cc
|
| index 9555da4c8eb2c9c3e9680243107b3c29e924fa3b..79cb879f1d8b90eb78658ebdfa9cd7b497ef6fa6 100644
|
| --- a/chrome/browser/sync/test/integration/two_client_app_list_sync_test.cc
|
| +++ b/chrome/browser/sync/test/integration/two_client_app_list_sync_test.cc
|
| @@ -63,7 +63,7 @@ void CheckAppInfoInPrefs(Profile* profile,
|
|
|
| for (auto id : expected_ids) {
|
| app_list::AppListItem* item =
|
| - service->model()->top_level_item_list()->FindItem(id);
|
| + service->GetModel()->top_level_item_list()->FindItem(id);
|
| ASSERT_TRUE(item);
|
| // Ensure local prefs matches the model data.
|
| scoped_ptr<app_list::AppListPrefs::AppListInfo> info =
|
| @@ -530,7 +530,7 @@ class TwoClientAppListSyncFolderTest : public TwoClientAppListSyncTest {
|
| bool res = TwoClientAppListSyncTest::SetupClients();
|
| app_list::AppListSyncableService* verifier_service =
|
| app_list::AppListSyncableServiceFactory::GetForProfile(verifier());
|
| - verifier_service->model()->SetFoldersEnabled(true);
|
| + verifier_service->GetModel()->SetFoldersEnabled(true);
|
| return res;
|
| }
|
|
|
|
|