| 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 #ifndef CHROME_TEST_LIVE_SYNC_LIVE_SESSIONS_SYNC_TEST_H_ | 5 #ifndef CHROME_TEST_LIVE_SYNC_LIVE_SESSIONS_SYNC_TEST_H_ | 
| 6 #define CHROME_TEST_LIVE_SYNC_LIVE_SESSIONS_SYNC_TEST_H_ | 6 #define CHROME_TEST_LIVE_SYNC_LIVE_SESSIONS_SYNC_TEST_H_ | 
| 7 #pragma once | 7 #pragma once | 
| 8 | 8 | 
| 9 #include <algorithm> | 9 #include <algorithm> | 
| 10 #include <vector> | 10 #include <vector> | 
| 11 | 11 | 
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" | 
| 13 #include "base/scoped_vector.h" | 13 #include "base/scoped_vector.h" | 
| 14 #include "base/ref_counted.h" | 14 #include "base/ref_counted.h" | 
| 15 #include "base/waitable_event.h" | 15 #include "base/synchronization/waitable_event.h" | 
| 16 #include "chrome/browser/browser_window.h" | 16 #include "chrome/browser/browser_window.h" | 
| 17 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" | 
| 18 #include "chrome/browser/renderer_host/render_view_host_delegate.h" | 18 #include "chrome/browser/renderer_host/render_view_host_delegate.h" | 
| 19 #include "chrome/browser/sessions/base_session_service.h" | 19 #include "chrome/browser/sessions/base_session_service.h" | 
| 20 #include "chrome/browser/sessions/session_service_test_helper.h" | 20 #include "chrome/browser/sessions/session_service_test_helper.h" | 
| 21 #include "chrome/browser/tab_contents/tab_contents.h" | 21 #include "chrome/browser/tab_contents/tab_contents.h" | 
| 22 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 22 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 
| 23 #include "chrome/test/live_sync/live_sync_test.h" | 23 #include "chrome/test/live_sync/live_sync_test.h" | 
| 24 #include "chrome/test/ui_test_utils.h" | 24 #include "chrome/test/ui_test_utils.h" | 
| 25 #include "googleurl/src/gurl.h" | 25 #include "googleurl/src/gurl.h" | 
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 407  public: | 407  public: | 
| 408   MultipleClientLiveSessionsSyncTest() | 408   MultipleClientLiveSessionsSyncTest() | 
| 409       : LiveSessionsSyncTest(MULTIPLE_CLIENT) {} | 409       : LiveSessionsSyncTest(MULTIPLE_CLIENT) {} | 
| 410   virtual ~MultipleClientLiveSessionsSyncTest() {} | 410   virtual ~MultipleClientLiveSessionsSyncTest() {} | 
| 411 | 411 | 
| 412  private: | 412  private: | 
| 413   DISALLOW_COPY_AND_ASSIGN(MultipleClientLiveSessionsSyncTest); | 413   DISALLOW_COPY_AND_ASSIGN(MultipleClientLiveSessionsSyncTest); | 
| 414 }; | 414 }; | 
| 415 | 415 | 
| 416 #endif  // CHROME_TEST_LIVE_SYNC_LIVE_SESSIONS_SYNC_TEST_H_ | 416 #endif  // CHROME_TEST_LIVE_SYNC_LIVE_SESSIONS_SYNC_TEST_H_ | 
| OLD | NEW | 
|---|