| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/scoped_vector.h" | 5 #include "base/scoped_vector.h" |
| 6 #include "chrome/test/live_sync/live_sessions_sync_test.h" | 6 #include "chrome/test/live_sync/live_sessions_sync_test.h" |
| 7 | 7 |
| 8 IN_PROC_BROWSER_TEST_F(SingleClientLiveSessionsSyncTest, Sanity) { | 8 IN_PROC_BROWSER_TEST_F(SingleClientLiveSessionsSyncTest, Sanity) { |
| 9 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; | 9 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; |
| 10 | 10 |
| 11 ASSERT_TRUE(CheckInitialState(0)); | 11 ASSERT_TRUE(CheckInitialState(0)); |
| 12 | 12 |
| 13 std::vector<SessionWindow*>* old_windows = | 13 std::vector<SessionWindow*>* old_windows = |
| 14 InitializeNewWindowWithTab(0, GURL("about:bubba")); | 14 InitializeNewWindowWithTab(0, GURL("about:bubba")); |
| 15 ASSERT_TRUE(old_windows); | 15 ASSERT_TRUE(old_windows); |
| 16 | 16 |
| 17 ASSERT_TRUE(GetClient(0)->AwaitSyncCycleCompletion( | 17 ASSERT_TRUE(GetClient(0)->AwaitSyncCycleCompletion( |
| 18 "Waiting for session change.")); | 18 "Waiting for session change.")); |
| 19 | 19 |
| 20 // Get foreign session data from client 0. | 20 // Get foreign session data from client 0. |
| 21 ScopedVector<ForeignSession> sessions; | 21 std::vector<const ForeignSession*> sessions; |
| 22 ASSERT_TRUE(GetSessionData(0, &sessions.get())); | 22 ASSERT_FALSE(GetSessionData(0, &sessions)); |
| 23 ASSERT_EQ(0U, sessions.size()); | 23 ASSERT_EQ(0U, sessions.size()); |
| 24 | 24 |
| 25 // Verify client didn't change. | 25 // Verify client didn't change. |
| 26 std::vector<SessionWindow*>* new_windows = GetHelper(0)->ReadWindows(); | 26 std::vector<SessionWindow*>* new_windows = GetHelper(0)->ReadWindows(); |
| 27 ASSERT_TRUE(new_windows); | 27 ASSERT_TRUE(new_windows); |
| 28 ASSERT_TRUE(WindowsMatch(*old_windows, *new_windows)); | 28 ASSERT_TRUE(WindowsMatch(*old_windows, *new_windows)); |
| 29 } | 29 } |
| 30 | 30 |
| OLD | NEW |