| Index: sync/sessions/sync_session_unittest.cc
|
| diff --git a/sync/sessions/sync_session_unittest.cc b/sync/sessions/sync_session_unittest.cc
|
| index bc69fe87588f615a9cc8846a4e395b8301c6722c..22ded5082b57dfc5da27aa459c8fc1af5b7a04e4 100644
|
| --- a/sync/sessions/sync_session_unittest.cc
|
| +++ b/sync/sessions/sync_session_unittest.cc
|
| @@ -368,7 +368,7 @@ TEST_F(SyncSessionTest, RebaseRoutingInfoWithLatestRemoveOneType) {
|
| EXPECT_EQ(expected_enabled_groups_one, one.GetEnabledGroups());
|
| EXPECT_EQ(expected_enabled_groups_two, two.GetEnabledGroups());
|
|
|
| - two.RebaseRoutingInfoWithLatest(one);
|
| + two.RebaseRoutingInfoWithLatest(one.routing_info(), one.workers());
|
|
|
| EXPECT_EQ(expected_enabled_groups_one, one.GetEnabledGroups());
|
| EXPECT_EQ(expected_enabled_groups_one, two.GetEnabledGroups());
|
| @@ -438,7 +438,7 @@ TEST_F(SyncSessionTest, RebaseRoutingInfoWithLatestWithSameType) {
|
| EXPECT_EQ(expected_enabled_groups, first.GetEnabledGroups());
|
| EXPECT_EQ(expected_enabled_groups, second.GetEnabledGroups());
|
|
|
| - second.RebaseRoutingInfoWithLatest(first);
|
| + second.RebaseRoutingInfoWithLatest(first.routing_info(), first.workers());
|
|
|
| EXPECT_EQ(expected_enabled_groups, first.GetEnabledGroups());
|
| EXPECT_EQ(expected_enabled_groups, second.GetEnabledGroups());
|
|
|