| Index: chrome/browser/sync/sessions/session_state_unittest.cc
|
| diff --git a/chrome/browser/sync/sessions/session_state_unittest.cc b/chrome/browser/sync/sessions/session_state_unittest.cc
|
| index 2c7c81cdf52d8ced209de1be68773a305543b1e6..a6a0dd8eb10fa91300f29e9fe3c7fc4df14e1705 100644
|
| --- a/chrome/browser/sync/sessions/session_state_unittest.cc
|
| +++ b/chrome/browser/sync/sessions/session_state_unittest.cc
|
| @@ -126,11 +126,10 @@ TEST_F(SessionStateTest, SyncSessionSnapshotToValue) {
|
| const int kNumServerChangesRemaining = 105;
|
| const bool kIsShareUsable = true;
|
|
|
| - syncable::ModelTypeBitSet initial_sync_ended;
|
| - initial_sync_ended.set(syncable::BOOKMARKS);
|
| - initial_sync_ended.set(syncable::PREFERENCES);
|
| + const syncable::ModelEnumSet initial_sync_ended(
|
| + syncable::BOOKMARKS, syncable::PREFERENCES);
|
| scoped_ptr<ListValue> expected_initial_sync_ended_value(
|
| - syncable::ModelTypeBitSetToValue(initial_sync_ended));
|
| + syncable::ModelEnumSetToValue(initial_sync_ended));
|
|
|
| std::string download_progress_markers[syncable::MODEL_TYPE_COUNT];
|
| download_progress_markers[syncable::BOOKMARKS] = "test";
|
|
|