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 "base/base_paths.h" | 7 #include "base/base_paths.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/files/file_util.h" | 9 #include "base/files/file_util.h" |
10 #include "base/message_loop/message_loop_proxy.h" | 10 #include "base/message_loop/message_loop_proxy.h" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 #include "chrome/test/base/history_index_restore_observer.h" | 51 #include "chrome/test/base/history_index_restore_observer.h" |
52 #include "chrome/test/base/testing_pref_service_syncable.h" | 52 #include "chrome/test/base/testing_pref_service_syncable.h" |
53 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" | 53 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" |
54 #include "components/bookmarks/browser/bookmark_model.h" | 54 #include "components/bookmarks/browser/bookmark_model.h" |
55 #include "components/bookmarks/common/bookmark_constants.h" | 55 #include "components/bookmarks/common/bookmark_constants.h" |
56 #include "components/content_settings/core/browser/host_content_settings_map.h" | 56 #include "components/content_settings/core/browser/host_content_settings_map.h" |
57 #include "components/history/content/browser/history_database_helper.h" | 57 #include "components/history/content/browser/history_database_helper.h" |
58 #include "components/history/core/browser/history_constants.h" | 58 #include "components/history/core/browser/history_constants.h" |
59 #include "components/history/core/browser/history_database_params.h" | 59 #include "components/history/core/browser/history_database_params.h" |
60 #include "components/history/core/browser/history_db_task.h" | 60 #include "components/history/core/browser/history_db_task.h" |
| 61 #include "components/history/core/browser/scored_history_match.h" |
61 #include "components/history/core/browser/top_sites.h" | 62 #include "components/history/core/browser/top_sites.h" |
62 #include "components/history/core/browser/top_sites_observer.h" | 63 #include "components/history/core/browser/top_sites_observer.h" |
63 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 64 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
64 #include "components/keyed_service/core/refcounted_keyed_service.h" | 65 #include "components/keyed_service/core/refcounted_keyed_service.h" |
| 66 #include "components/omnibox/omnibox_field_trial.h" |
65 #include "components/policy/core/common/policy_service.h" | 67 #include "components/policy/core/common/policy_service.h" |
66 #include "components/user_prefs/user_prefs.h" | 68 #include "components/user_prefs/user_prefs.h" |
67 #include "components/webdata_services/web_data_service_wrapper.h" | 69 #include "components/webdata_services/web_data_service_wrapper.h" |
68 #include "content/public/browser/browser_thread.h" | 70 #include "content/public/browser/browser_thread.h" |
69 #include "content/public/browser/cookie_store_factory.h" | 71 #include "content/public/browser/cookie_store_factory.h" |
70 #include "content/public/browser/notification_service.h" | 72 #include "content/public/browser/notification_service.h" |
71 #include "content/public/browser/render_process_host.h" | 73 #include "content/public/browser/render_process_host.h" |
72 #include "content/public/browser/storage_partition.h" | 74 #include "content/public/browser/storage_partition.h" |
73 #include "content/public/test/mock_resource_context.h" | 75 #include "content/public/test/mock_resource_context.h" |
74 #include "content/public/test/test_utils.h" | 76 #include "content/public/test/test_utils.h" |
(...skipping 1009 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1084 #if defined(ENABLE_EXTENSIONS) | 1086 #if defined(ENABLE_EXTENSIONS) |
1085 extension_policy_, | 1087 extension_policy_, |
1086 #endif | 1088 #endif |
1087 pref_service_.Pass(), | 1089 pref_service_.Pass(), |
1088 original_profile, | 1090 original_profile, |
1089 guest_session_, | 1091 guest_session_, |
1090 supervised_user_id_, | 1092 supervised_user_id_, |
1091 policy_service_.Pass(), | 1093 policy_service_.Pass(), |
1092 testing_factories_); | 1094 testing_factories_); |
1093 } | 1095 } |
OLD | NEW |