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/test/base/testing_profile.h" | 5 #include "chrome/test/base/testing_profile.h" |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 | 8 |
9 #include "base/base_paths.h" | 9 #include "base/base_paths.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 #include "chrome/browser/search_engines/template_url_fetcher_factory.h" | 50 #include "chrome/browser/search_engines/template_url_fetcher_factory.h" |
51 #include "chrome/browser/webdata/web_data_service.h" | 51 #include "chrome/browser/webdata/web_data_service.h" |
52 #include "chrome/browser/webdata/web_data_service_factory.h" | 52 #include "chrome/browser/webdata/web_data_service_factory.h" |
53 #include "chrome/common/chrome_constants.h" | 53 #include "chrome/common/chrome_constants.h" |
54 #include "chrome/common/chrome_switches.h" | 54 #include "chrome/common/chrome_switches.h" |
55 #include "chrome/common/pref_names.h" | 55 #include "chrome/common/pref_names.h" |
56 #include "chrome/common/url_constants.h" | 56 #include "chrome/common/url_constants.h" |
57 #include "chrome/test/base/history_index_restore_observer.h" | 57 #include "chrome/test/base/history_index_restore_observer.h" |
58 #include "chrome/test/base/testing_pref_service_syncable.h" | 58 #include "chrome/test/base/testing_pref_service_syncable.h" |
59 #include "chrome/test/base/ui_test_utils.h" | 59 #include "chrome/test/base/ui_test_utils.h" |
60 #include "components/bookmarks/core/browser/bookmark_model.h" | 60 #include "components/bookmarks/browser/bookmark_model.h" |
61 #include "components/bookmarks/core/common/bookmark_constants.h" | 61 #include "components/bookmarks/common/bookmark_constants.h" |
62 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 62 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
63 #include "components/policy/core/common/policy_service.h" | 63 #include "components/policy/core/common/policy_service.h" |
64 #include "components/user_prefs/user_prefs.h" | 64 #include "components/user_prefs/user_prefs.h" |
65 #include "content/public/browser/browser_thread.h" | 65 #include "content/public/browser/browser_thread.h" |
66 #include "content/public/browser/cookie_store_factory.h" | 66 #include "content/public/browser/cookie_store_factory.h" |
67 #include "content/public/browser/notification_service.h" | 67 #include "content/public/browser/notification_service.h" |
68 #include "content/public/browser/render_process_host.h" | 68 #include "content/public/browser/render_process_host.h" |
69 #include "content/public/browser/storage_partition.h" | 69 #include "content/public/browser/storage_partition.h" |
70 #include "content/public/test/mock_resource_context.h" | 70 #include "content/public/test/mock_resource_context.h" |
71 #include "content/public/test/test_utils.h" | 71 #include "content/public/test/test_utils.h" |
(...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
978 path_, | 978 path_, |
979 delegate_, | 979 delegate_, |
980 extension_policy_, | 980 extension_policy_, |
981 pref_service_.Pass(), | 981 pref_service_.Pass(), |
982 incognito_, | 982 incognito_, |
983 guest_session_, | 983 guest_session_, |
984 managed_user_id_, | 984 managed_user_id_, |
985 policy_service_.Pass(), | 985 policy_service_.Pass(), |
986 testing_factories_)); | 986 testing_factories_)); |
987 } | 987 } |
OLD | NEW |