| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 #include "chrome/common/chrome_constants.h" | 47 #include "chrome/common/chrome_constants.h" |
| 48 #include "chrome/common/chrome_switches.h" | 48 #include "chrome/common/chrome_switches.h" |
| 49 #include "chrome/common/pref_names.h" | 49 #include "chrome/common/pref_names.h" |
| 50 #include "chrome/common/url_constants.h" | 50 #include "chrome/common/url_constants.h" |
| 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/favicon/core/browser/favicon_service.h" | 57 #include "components/favicon/core/favicon_service.h" |
| 58 #include "components/history/content/browser/content_visit_delegate.h" | 58 #include "components/history/content/browser/content_visit_delegate.h" |
| 59 #include "components/history/content/browser/history_database_helper.h" | 59 #include "components/history/content/browser/history_database_helper.h" |
| 60 #include "components/history/core/browser/history_backend.h" | 60 #include "components/history/core/browser/history_backend.h" |
| 61 #include "components/history/core/browser/history_constants.h" | 61 #include "components/history/core/browser/history_constants.h" |
| 62 #include "components/history/core/browser/history_database_params.h" | 62 #include "components/history/core/browser/history_database_params.h" |
| 63 #include "components/history/core/browser/history_db_task.h" | 63 #include "components/history/core/browser/history_db_task.h" |
| 64 #include "components/history/core/browser/history_service.h" | 64 #include "components/history/core/browser/history_service.h" |
| 65 #include "components/history/core/browser/top_sites.h" | 65 #include "components/history/core/browser/top_sites.h" |
| 66 #include "components/history/core/browser/top_sites_observer.h" | 66 #include "components/history/core/browser/top_sites_observer.h" |
| 67 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 67 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
| (...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1123 #if defined(ENABLE_EXTENSIONS) | 1123 #if defined(ENABLE_EXTENSIONS) |
| 1124 extension_policy_, | 1124 extension_policy_, |
| 1125 #endif | 1125 #endif |
| 1126 pref_service_.Pass(), | 1126 pref_service_.Pass(), |
| 1127 original_profile, | 1127 original_profile, |
| 1128 guest_session_, | 1128 guest_session_, |
| 1129 supervised_user_id_, | 1129 supervised_user_id_, |
| 1130 policy_service_.Pass(), | 1130 policy_service_.Pass(), |
| 1131 testing_factories_); | 1131 testing_factories_); |
| 1132 } | 1132 } |
| OLD | NEW |