| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/sync/test/integration/sync_test.h" | 5 #include "chrome/browser/sync/test/integration/sync_test.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "chrome/browser/sync/test/integration/sync_integration_test_util.h" | 43 #include "chrome/browser/sync/test/integration/sync_integration_test_util.h" |
| 44 #include "chrome/browser/ui/browser.h" | 44 #include "chrome/browser/ui/browser.h" |
| 45 #include "chrome/browser/ui/browser_finder.h" | 45 #include "chrome/browser/ui/browser_finder.h" |
| 46 #include "chrome/browser/ui/host_desktop.h" | 46 #include "chrome/browser/ui/host_desktop.h" |
| 47 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 47 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 48 #include "chrome/browser/ui/webui/signin/login_ui_service_factory.h" | 48 #include "chrome/browser/ui/webui/signin/login_ui_service_factory.h" |
| 49 #include "chrome/common/chrome_paths.h" | 49 #include "chrome/common/chrome_paths.h" |
| 50 #include "chrome/common/chrome_switches.h" | 50 #include "chrome/common/chrome_switches.h" |
| 51 #include "chrome/test/base/testing_browser_process.h" | 51 #include "chrome/test/base/testing_browser_process.h" |
| 52 #include "chrome/test/base/ui_test_utils.h" | 52 #include "chrome/test/base/ui_test_utils.h" |
| 53 #include "components/bookmarks/core/test/bookmark_test_helpers.h" | 53 #include "components/bookmarks/test/bookmark_test_helpers.h" |
| 54 #include "components/os_crypt/os_crypt.h" | 54 #include "components/os_crypt/os_crypt.h" |
| 55 #include "components/signin/core/browser/signin_manager.h" | 55 #include "components/signin/core/browser/signin_manager.h" |
| 56 #include "content/public/browser/web_contents.h" | 56 #include "content/public/browser/web_contents.h" |
| 57 #include "content/public/test/test_browser_thread.h" | 57 #include "content/public/test/test_browser_thread.h" |
| 58 #include "google_apis/gaia/gaia_urls.h" | 58 #include "google_apis/gaia/gaia_urls.h" |
| 59 #include "net/base/escape.h" | 59 #include "net/base/escape.h" |
| 60 #include "net/base/load_flags.h" | 60 #include "net/base/load_flags.h" |
| 61 #include "net/base/network_change_notifier.h" | 61 #include "net/base/network_change_notifier.h" |
| 62 #include "net/proxy/proxy_config.h" | 62 #include "net/proxy/proxy_config.h" |
| 63 #include "net/proxy/proxy_config_service_fixed.h" | 63 #include "net/proxy/proxy_config_service_fixed.h" |
| (...skipping 963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1027 BrowserThread::PostTask( | 1027 BrowserThread::PostTask( |
| 1028 BrowserThread::IO, FROM_HERE, | 1028 BrowserThread::IO, FROM_HERE, |
| 1029 base::Bind(&SetProxyConfigCallback, &done, | 1029 base::Bind(&SetProxyConfigCallback, &done, |
| 1030 make_scoped_refptr(context_getter), proxy_config)); | 1030 make_scoped_refptr(context_getter), proxy_config)); |
| 1031 done.Wait(); | 1031 done.Wait(); |
| 1032 } | 1032 } |
| 1033 | 1033 |
| 1034 fake_server::FakeServer* SyncTest::GetFakeServer() const { | 1034 fake_server::FakeServer* SyncTest::GetFakeServer() const { |
| 1035 return fake_server_.get(); | 1035 return fake_server_.get(); |
| 1036 } | 1036 } |
| OLD | NEW |